Awesome. NET Office software library

Source: Internet
Author: User

I accidentally searched this website for a project. At first I thought it was a masterpiece of a foreign scalpers. Then I saw that the contact address was Chengdu, Sichuan... We Chinese are also very good at comparison with laomei and Indians.

This website provides all component libraries, such as word, excel, ppt, and pdf, as well as rich cases and help documents.

Home: http://www.e-iceblue.com/

Help document: http://www.e-iceblue.com/Tutorials.html

Take pdf as an example:

1. Download the pdf component

: Http://www.e-iceblue.com/Introduce/pdf-for-net-introduce.html#.U5nFOyV6rZM


You need to register an account one minute before downloading. After downloading, install the account.

Ii. Learning case code

See help documentation: http://www.e-iceblue.com/Tutorials/Spire.PDF/Demos/Quick-guide/PDF-HelloWorld-C-VB.NET.html

Or view the installed code.


3. Create your own instance

1. Create a project, right-click to add the dll library, the default address in C: \ Program Files \ e-iceblue \ Spire. PDF-FE \ Bin \ NET3.5


2. Write the instance code. Do not forget the namespace.

Using System; using System. windows. forms; using System. drawing; using Spire. pdf; using Spire. pdf. graphics; namespace WindowsFormsApplication2 {public partial class Form1: Form {public Form1 () {InitializeComponent ();} private void Form1_Load (object sender, EventArgs e) {document doc = new document (); // create a pdf file PdfPageBase page = doc. pages. add (); // Add a page. canvas. drawString ("Hello, World! ", // Add content new PdfFont (PdfFontFamily. helvetica, 30f), new javassolidbrush (Color. black), 10, 10); doc. saveToFile ("helloworldworkflow"); // Save the pdf document doc. close (); System. diagnostics. process. start ("HelloWorld.pdf"); // open a file }}}


I was surprised by the various conversions. This partner can implement them by themselves.







Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.