
Sisipkan Bentuk di Excel menggunakan Node.js
- Sisipkan bentuk di Excel menggunakan Node.js - instalasi API
- Masukkan bentuk Garis ke dalam Lembar Kerja
- Tambahkan Persegi Panjang dalam file Excel
- Masukkan bentuk Bintang ke Lembar Kerja
- Tambahkan tanda perkalian
Sisipkan bentuk di Excel menggunakan Node.js - instalasi API
Proses instalasi perpustakaan ini sederhana. Anda dapat mengunduh paket API atau menginstalnya dengan menjalankan perintah berikut ke terminal:
npm install java
npm install aspose.cells
Sisipkan bentuk Garis ke dalam Lembar Kerja
Anda dapat mengikuti langkah-langkah dan cuplikan kode untuk menambahkan bentuk garis ke dalam file Excel secara terprogram:
- Membuat instance dari kelas Workbook.
- Akses lembar kerja pertama dari koleksi dengan memanggil metode get(index).
- Aktifkan metode addShape untuk menambahkan baris ke lembar kerja.
- Panggil metode save untuk menyimpan file.
Salin & tempel kode berikut ke file utama Anda:
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
var fs = require('fs'); var aspose = aspose || {}; aspose.cells = require("aspose.cells"); // Instantiate an instance of the Workbook class var workbook = new aspose.cells.Workbook(); // Access first worksheet from the collection by calling the get(index) method var sheet = workbook.getWorksheets().get(0); // Invoke the addShape method to add the line to the worksheet sheet.getShapes().addShape(aspose.cells.MsoDrawingType.LINE, 2, 0, 2, 0, 100, 300);//method 1 // Call the save method to save the file workbook.save("sample2.xlsx", aspose.cells.SaveFormat.XLSX);
Tambahkan Rectangle dalam file Excel
Demikian pula, kita dapat menambahkan bentuk persegi panjang dengan mengikuti potongan kode:
var fs = require('fs'); | |
var aspose = aspose || {}; | |
aspose.cells = require("aspose.cells"); | |
// Instantiate an instance of the Workbook class | |
var workbook = new aspose.cells.Workbook(); | |
// Access first worksheet from the collection by calling the get(index) method | |
var sheet = workbook.getWorksheets().get(0); | |
// Add the rectangle to the worksheet by calling the addShape method | |
var shapes = sheet.getShapes().addShape(aspose.cells.MsoDrawingType.RECTANGLE, 2, 0, 2, 0, 100, 300); | |
// Save the file. https://reference.aspose.com/cells/nodejs/Workbook#save | |
workbook.save("sample3.xlsx", aspose.cells.SaveFormat.XLSX); |

Masukkan bentuk Bintang ke Lembar Kerja
Ikuti cuplikan kode untuk menambahkan tanda bintang menggunakan API JavaScript untuk Excel ini:
var fs = require('fs'); | |
var aspose = aspose || {}; | |
aspose.cells = require("aspose.cells"); | |
// Instantiate an instance of the Workbook class | |
var workbook = new aspose.cells.Workbook(); | |
// Access first worksheet from the collection by calling the get(index) method | |
var sheet = workbook.getWorksheets().get(0); | |
// Add the star shape to the worksheet by calling the addShape method | |
sheet.getShapes().addAutoShape(aspose.cells.AutoShapeType.STAR_5, 2, 0, 2, 0, 100, 100); | |
// Save the file. https://reference.aspose.com/cells/nodejs/Workbook#save | |
workbook.save("sample5.xlsx", aspose.cells.SaveFormat.XLSX); |

Tambahkan tanda perkalian
Ikuti cuplikan kode untuk menambahkan tanda bintang menggunakan API JavaScript untuk Excel ini:
var fs = require('fs'); | |
var aspose = aspose || {}; | |
aspose.cells = require("aspose.cells"); | |
// Instantiate an instance of the Workbook class | |
var workbook = new aspose.cells.Workbook(); | |
// Access first worksheet from the collection by calling the get(index) | |
var sheet = workbook.getWorksheets().get(0); | |
// Add the multiplication shape to the worksheet by calling the addShape method | |
sheet.getShapes().addAutoShape(aspose.cells.AutoShapeType.MATH_MULTIPLY, 2, 0, 2, 0, 100, 100); | |
// Save the file. https://reference.aspose.com/cells/nodejs/Workbook#save | |
workbook.save("sample4.xlsx", aspose.cells.SaveFormat.XLSX); |

Dapatkan Lisensi Gratis
Anda dapat memanfaatkan lisensi sementara gratis untuk mencoba API tanpa batasan evaluasi.
Menyimpulkan
Ini membawa kita ke akhir posting blog ini. Anda telah mempelajari cara menyisipkan bentuk di Excel menggunakan pustaka Node.js Excel. Selain itu, Anda telah mempelajari beberapa fitur yang menonjol dari JavaScript API for Excel ini. Selain itu, posting blog ini akan sangat membantu Anda jika Anda ingin mengotomatiskan proses ini secara terprogram. Namun, jangan lupa untuk mengunjungi dokumentasi untuk mengetahui fitur lainnya. Selain itu, kami menyarankan Anda untuk mengikuti [Panduan Memulai] kami14. Terakhir, conholdate.com sedang menulis posting blog baru. Oleh karena itu, harap tetap berhubungan untuk pembaruan rutin.
Berikan pertanyaan
Anda dapat memberi tahu kami tentang pertanyaan atau pertanyaan Anda di forum kami.
FAQ
Bagaimana cara menyisipkan beberapa bentuk ke dalam Excel? Silakan ikuti [tautan] ini 3 untuk mengetahui cuplikan kode yang membantu Anda menambahkan berbagai bentuk dalam file Excel secara terprogram.