⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 blankworksheet.cs

📁 .net 对excel得完全操作源码(老外代码)
💻 CS
字号:
using System;

using org.in2bits.MyXls;

namespace MyXls.Examles.CS
{
    /// <summary>
    /// Create and send a blank Workbook.  This is the simplest possible use of
    /// MyXls.  By default, if you haven't added any Worksheets to the Workbook
    /// when you call Send on the XlsDocument, one is added and named "Sheet1".
    /// </summary>
    public class BlankWorksheet
    {
        public void Run()
        {
            XlsDocument xls = new XlsDocument(); //Create a new XlsDocument
            xls.Send(); //Send it to the client
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -