-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/aspose-cells/aspose.cells-p…
…roducts into dev
- Loading branch information
Showing
2 changed files
with
254 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
--- | ||
title: Create AZW3 - Create AZW3 file in C# | ||
description: Aspose Excel. C# Create AZW3 File quickly and easily with Aspose.Cells. Generate AZW3 file using C#. Create AZW3 in C#. C# AZW3 Creater. | ||
keywords: [Aspose Excel., C# Aspose.Cells., C# Create AZW3 file., Generate AZW3 file in C#., Create AZW3 file using C#., Write data to AZW3 file via C#., Create a AZW3 file in C#., C# Generate a AZW3 file., C# AZW3 Creater] | ||
--- | ||
|
||
{{< blocks/products/pf/main-wrap-class isAutogenPage="true">}} | ||
{{< blocks/products/pf/upper-banner h1="Create AZW3 File in C#" h2="High-speed C# library for creating AZW3. This is a professional software solution to import and export XLSX, PDF, and many other formats on .NET Framework, .NET Core or Mono Platforms." logoImageSrc="https://www.aspose.cloud/templates/aspose/img/products/cells/aspose_cells-for-net.svg" sourceAdditionalConversionTag="" additionalConversionTag="AZW3" pfName="" subTitlepfName="" downloadUrl="" fileiconsmall1="HTML" fileiconsmall2="JPG" fileiconsmall3="PDF" fileiconsmall4="XML" fileiconsmall5="XLSX" >}} | ||
|
||
{{< blocks/products/pf/main-container pfName="Aspose.Cells " subTitlepfName="for .NET" >}} | ||
{{< blocks/products/pf/sub-menu autoGeneratedVersion="true" logoImageSrc="https://www.aspose.cloud/templates/aspose/img/products/cells/aspose_cells-for-net.svg" apiHomeLink="" codeSamplesLink="https://github.com/aspose-cells" liveDemosLink="https://products.aspose.app/cells/family" docsLink="https://docs.aspose.com/cells/net" installationsDocsLink="https://docs.aspose.com/cells/net" nugetLink="https://www.nuget.org/packages/aspose.cells" nugetPackageName="" downloadAsLink="https://releases.aspose.com/cells/net" learnAsLink="https://docs.aspose.com/cells/net" apiReference="" mavenRepoLink="" >}} | ||
|
||
{{% blocks/products/pf/agp/content h2="Create AZW3 File Using C#" %}} | ||
How to create AZW3 file? With Aspose.Cells for .NET library, you can easily create AZW3 file programmatically with a few lines of code. [Aspose.Cells for .NET](https://products.aspose.com/cells/net) is capable of building cross-platform applications with the ability to generate, modify, convert, render and print all Excel files. .NET Excel API not only convert between spreadsheet formats, it can also render Excel files as images, PDF, HTML, ODS, CSV, SVG, JSON, WORD, PPT and more, thus making it a perfect choice to exchange documents in industry-standard formats. Open [NuGet](https://www.nuget.org/packages/aspose.cells) package manager, search for Aspose.Cells and install. You may also use the following command from the Package Manager Console. | ||
|
||
{{% blocks/products/pf/agp/code-block title="Package Manager Console Command" offSpacer="true" %}} | ||
|
||
```cs | ||
|
||
PM> Install-Package Aspose.Cells | ||
|
||
``` | ||
|
||
{{% /blocks/products/pf/agp/code-block %}} | ||
|
||
{{% /blocks/products/pf/agp/content %}} | ||
|
||
|
||
{{% blocks/products/pf/agp/content h2="How to Create AZW3 in C#" %}} | ||
|
||
{{% blocks/products/pf/agp/text %}} | ||
|
||
It is easy for the developers to create, load, modify and convert AZW3 files within running different reporting applications for data processing in just a few lines of code. | ||
|
||
{{% /blocks/products/pf/agp/text %}} | ||
|
||
1. Include the namespace in your class file | ||
1. Create Workbook class instance. | ||
1. Access the first worksheet of the workbook. | ||
1. Get the desired cell(s) of the worksheet and input the value into the cell(s). | ||
1. Use Save method to save the workbook as AZW3 file. | ||
|
||
{{% blocks/products/pf/agp/code-block title="Sample code shows how to create AZW3 file in C#." offSpacer="" %}} | ||
|
||
```cs | ||
|
||
// Create Workbook class instance. | ||
Workbook wkb = new Workbook(); | ||
|
||
// Access the first worksheet of the workbook. | ||
Worksheet sht = wkb.Worksheets[0]; | ||
|
||
// Get the desired cell(s) of the worksheet. | ||
Cell c00 = sht.Cells["A1"]; | ||
Cell c01 = sht.Cells["B1"]; | ||
Cell c10 = sht.Cells["A2"]; | ||
Cell c11 = sht.Cells["B2"]; | ||
|
||
// input the value into the cell(s). | ||
c00.PutValue("ColumnA"); | ||
c01.PutValue("ColumnB"); | ||
c10.PutValue("ValueA"); | ||
c11.PutValue("ValueB"); | ||
|
||
// Save the Workbook as .AZW3 file. | ||
wkb.Save("created_one.AZW3"); | ||
|
||
``` | ||
|
||
{{% /blocks/products/pf/agp/code-block %}} | ||
{{% /blocks/products/pf/agp/content %}} | ||
|
||
|
||
{{% blocks/products/pf/agp/content h2="C# library to create AZW3 file" %}} | ||
|
||
{{% blocks/products/pf/agp/text %}} | ||
|
||
There are two alternative options to install "Aspose.Cells for .NET" onto your system. Please choose one that resembles your needs and follow the step-by-step instructions: | ||
|
||
{{% /blocks/products/pf/agp/text %}} | ||
|
||
1. Install a [NuGet Package](https://www.nuget.org/packages/Aspose.Cells/). See [Documentation](https://docs.aspose.com/cells/net/installation/#install-asposecells-for-net-through-nuget) | ||
1. Install the library using [Package Manager Console](https://docs.aspose.com/cells/net/installation/#install-asposecells-using-the-package-manager-console) within Visual Studio IDE | ||
|
||
{{% /blocks/products/pf/agp/content %}} | ||
|
||
|
||
{{% blocks/products/pf/agp/content h2="System Requirements" %}} | ||
|
||
{{% blocks/products/pf/agp/text %}} | ||
|
||
Before running the .NET conversion example code, make sure that you have the following prerequisites. | ||
|
||
{{% /blocks/products/pf/agp/text %}} | ||
|
||
- Microsoft Windows or a compatible OS with .NET, .NET Core, Windows Azure or Mono Platforms. | ||
- Development environment like Microsoft Visual Studio. | ||
- Add reference to the Aspose.Cells for .NET DLL in your project. | ||
|
||
{{% /blocks/products/pf/agp/content %}} | ||
|
||
<!-- aboutfile Starts --> | ||
{{< blocks/products/pf/agp/about-file-section >}} | ||
{{< blocks/products/pf/agp/about-file-text fileFormat="AZW3" readMoreLink="https://docs.fileformat.com/web/AZW3/" >}}Files with AZW3 extension represent a web page archive format that can be created by a number of different applications. The format is known as archive format because it saves the web HTML code and associated resources in a single file. These resources include anything linked to the webpage such as images, applets, animations, audio files and so on. AZW3 files can be opened in a variety of applications such as Internet Explorer and Microsoft Word. Microsoft Windows uses AZW3 file format for recording scenarios of problems observed during the usage of any application on Windows that raises issues. The AZW3 file format encodes the page contents similar to specifications defined in message/rfc822 which is plain text email related specifications.{{< /blocks/products/pf/agp/about-file-text >}} | ||
{{< /blocks/products/pf/agp/about-file-section >}} | ||
<!-- aboutfile Ends --> | ||
|
||
{{< blocks/products/pf/agp/other-supported-section title="Other Supported Spreadsheet Generation" subTitle="You can also create other Microsoft Excel formats including few listed below." >}} | ||
|
||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xls/" name="XLS" description="Microsoft Excel Spreadsheet (Legacy)" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xlsx/" name="XLSX" description="Open XML Workbook" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xlsb/" name="XLSB" description="Excel Binary Workbook" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xlsm/" name="XLSM" description="Macro-enabled Spreadsheet" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xlt/" name="XLT" description="Excel 97 - 2003 Template" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xltx/" name="XLTX" description="Excel Template" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xltm/" name="XLTM" description="Excel Macro-Enabled Template" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/csv/" name="CSV" description="Comma Separated Values" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/tsv/" name="TSV" description="Tab Separated Values" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/ods/" name="ODS" description="OpenDocument Spreadsheet" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/pdf/" name="PDF" description="Portable Document Format" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/html/" name="HTML" description="Hyper Text Markup Language" >}} | ||
|
||
{{< /blocks/products/pf/agp/other-supported-section >}} | ||
|
||
{{< /blocks/products/pf/main-container >}} | ||
|
||
{{< /blocks/products/pf/main-wrap-class >}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
--- | ||
title: Create EPUB - Create EPUB file in C# | ||
description: Aspose Excel. C# Create EPUB File quickly and easily with Aspose.Cells. Generate EPUB file using C#. Create EPUB in C#. C# EPUB Creater. | ||
keywords: [Aspose Excel., C# Aspose.Cells., C# Create EPUB file., Generate EPUB file in C#., Create EPUB file using C#., Write data to EPUB file via C#., Create a EPUB file in C#., C# Generate a EPUB file., C# EPUB Creater] | ||
--- | ||
|
||
{{< blocks/products/pf/main-wrap-class isAutogenPage="true">}} | ||
{{< blocks/products/pf/upper-banner h1="Create EPUB File in C#" h2="High-speed C# library for creating EPUB. This is a professional software solution to import and export XLSX, PDF, and many other formats on .NET Framework, .NET Core or Mono Platforms." logoImageSrc="https://www.aspose.cloud/templates/aspose/img/products/cells/aspose_cells-for-net.svg" sourceAdditionalConversionTag="" additionalConversionTag="EPUB" pfName="" subTitlepfName="" downloadUrl="" fileiconsmall1="HTML" fileiconsmall2="JPG" fileiconsmall3="PDF" fileiconsmall4="XML" fileiconsmall5="XLSX" >}} | ||
|
||
{{< blocks/products/pf/main-container pfName="Aspose.Cells " subTitlepfName="for .NET" >}} | ||
{{< blocks/products/pf/sub-menu autoGeneratedVersion="true" logoImageSrc="https://www.aspose.cloud/templates/aspose/img/products/cells/aspose_cells-for-net.svg" apiHomeLink="" codeSamplesLink="https://github.com/aspose-cells" liveDemosLink="https://products.aspose.app/cells/family" docsLink="https://docs.aspose.com/cells/net" installationsDocsLink="https://docs.aspose.com/cells/net" nugetLink="https://www.nuget.org/packages/aspose.cells" nugetPackageName="" downloadAsLink="https://releases.aspose.com/cells/net" learnAsLink="https://docs.aspose.com/cells/net" apiReference="" mavenRepoLink="" >}} | ||
|
||
{{% blocks/products/pf/agp/content h2="Create EPUB File Using C#" %}} | ||
How to create EPUB file? With Aspose.Cells for .NET library, you can easily create EPUB file programmatically with a few lines of code. [Aspose.Cells for .NET](https://products.aspose.com/cells/net) is capable of building cross-platform applications with the ability to generate, modify, convert, render and print all Excel files. .NET Excel API not only convert between spreadsheet formats, it can also render Excel files as images, PDF, HTML, ODS, CSV, SVG, JSON, WORD, PPT and more, thus making it a perfect choice to exchange documents in industry-standard formats. Open [NuGet](https://www.nuget.org/packages/aspose.cells) package manager, search for Aspose.Cells and install. You may also use the following command from the Package Manager Console. | ||
|
||
{{% blocks/products/pf/agp/code-block title="Package Manager Console Command" offSpacer="true" %}} | ||
|
||
```cs | ||
|
||
PM> Install-Package Aspose.Cells | ||
|
||
``` | ||
|
||
{{% /blocks/products/pf/agp/code-block %}} | ||
|
||
{{% /blocks/products/pf/agp/content %}} | ||
|
||
|
||
{{% blocks/products/pf/agp/content h2="How to Create EPUB in C#" %}} | ||
|
||
{{% blocks/products/pf/agp/text %}} | ||
|
||
It is easy for the developers to create, load, modify and convert EPUB files within running different reporting applications for data processing in just a few lines of code. | ||
|
||
{{% /blocks/products/pf/agp/text %}} | ||
|
||
1. Include the namespace in your class file | ||
1. Create Workbook class instance. | ||
1. Access the first worksheet of the workbook. | ||
1. Get the desired cell(s) of the worksheet and input the value into the cell(s). | ||
1. Use Save method to save the workbook as EPUB file. | ||
|
||
{{% blocks/products/pf/agp/code-block title="Sample code shows how to create EPUB file in C#." offSpacer="" %}} | ||
|
||
```cs | ||
|
||
// Create Workbook class instance. | ||
Workbook wkb = new Workbook(); | ||
|
||
// Access the first worksheet of the workbook. | ||
Worksheet sht = wkb.Worksheets[0]; | ||
|
||
// Get the desired cell(s) of the worksheet. | ||
Cell c00 = sht.Cells["A1"]; | ||
Cell c01 = sht.Cells["B1"]; | ||
Cell c10 = sht.Cells["A2"]; | ||
Cell c11 = sht.Cells["B2"]; | ||
|
||
// input the value into the cell(s). | ||
c00.PutValue("ColumnA"); | ||
c01.PutValue("ColumnB"); | ||
c10.PutValue("ValueA"); | ||
c11.PutValue("ValueB"); | ||
|
||
// Save the Workbook as .EPUB file. | ||
wkb.Save("created_one.EPUB"); | ||
|
||
``` | ||
|
||
{{% /blocks/products/pf/agp/code-block %}} | ||
{{% /blocks/products/pf/agp/content %}} | ||
|
||
|
||
{{% blocks/products/pf/agp/content h2="C# library to create EPUB file" %}} | ||
|
||
{{% blocks/products/pf/agp/text %}} | ||
|
||
There are two alternative options to install "Aspose.Cells for .NET" onto your system. Please choose one that resembles your needs and follow the step-by-step instructions: | ||
|
||
{{% /blocks/products/pf/agp/text %}} | ||
|
||
1. Install a [NuGet Package](https://www.nuget.org/packages/Aspose.Cells/). See [Documentation](https://docs.aspose.com/cells/net/installation/#install-asposecells-for-net-through-nuget) | ||
1. Install the library using [Package Manager Console](https://docs.aspose.com/cells/net/installation/#install-asposecells-using-the-package-manager-console) within Visual Studio IDE | ||
|
||
{{% /blocks/products/pf/agp/content %}} | ||
|
||
|
||
{{% blocks/products/pf/agp/content h2="System Requirements" %}} | ||
|
||
{{% blocks/products/pf/agp/text %}} | ||
|
||
Before running the .NET conversion example code, make sure that you have the following prerequisites. | ||
|
||
{{% /blocks/products/pf/agp/text %}} | ||
|
||
- Microsoft Windows or a compatible OS with .NET, .NET Core, Windows Azure or Mono Platforms. | ||
- Development environment like Microsoft Visual Studio. | ||
- Add reference to the Aspose.Cells for .NET DLL in your project. | ||
|
||
{{% /blocks/products/pf/agp/content %}} | ||
|
||
<!-- aboutfile Starts --> | ||
{{< blocks/products/pf/agp/about-file-section >}} | ||
{{< blocks/products/pf/agp/about-file-text fileFormat="EPUB" readMoreLink="https://docs.fileformat.com/web/EPUB/" >}}Files with EPUB extension represent a web page archive format that can be created by a number of different applications. The format is known as archive format because it saves the web HTML code and associated resources in a single file. These resources include anything linked to the webpage such as images, applets, animations, audio files and so on. EPUB files can be opened in a variety of applications such as Internet Explorer and Microsoft Word. Microsoft Windows uses EPUB file format for recording scenarios of problems observed during the usage of any application on Windows that raises issues. The EPUB file format encodes the page contents similar to specifications defined in message/rfc822 which is plain text email related specifications.{{< /blocks/products/pf/agp/about-file-text >}} | ||
{{< /blocks/products/pf/agp/about-file-section >}} | ||
<!-- aboutfile Ends --> | ||
|
||
{{< blocks/products/pf/agp/other-supported-section title="Other Supported Spreadsheet Generation" subTitle="You can also create other Microsoft Excel formats including few listed below." >}} | ||
|
||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xls/" name="XLS" description="Microsoft Excel Spreadsheet (Legacy)" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xlsx/" name="XLSX" description="Open XML Workbook" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xlsb/" name="XLSB" description="Excel Binary Workbook" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xlsm/" name="XLSM" description="Macro-enabled Spreadsheet" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xlt/" name="XLT" description="Excel 97 - 2003 Template" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xltx/" name="XLTX" description="Excel Template" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/xltm/" name="XLTM" description="Excel Macro-Enabled Template" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/csv/" name="CSV" description="Comma Separated Values" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/tsv/" name="TSV" description="Tab Separated Values" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/ods/" name="ODS" description="OpenDocument Spreadsheet" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/pdf/" name="PDF" description="Portable Document Format" >}} | ||
{{< blocks/products/pf/agp/other-supported-section-item href="https://products.aspose.com/cells/net/create/html/" name="HTML" description="Hyper Text Markup Language" >}} | ||
|
||
{{< /blocks/products/pf/agp/other-supported-section >}} | ||
|
||
{{< /blocks/products/pf/main-container >}} | ||
|
||
{{< /blocks/products/pf/main-wrap-class >}} |