Spire.XLS 자습서: Excel에서 셀 병합
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Excel = Microsoft.Office.Interop.Excel;
using Office = Microsoft.Office.Core;
using Microsoft.Office.Tools.Excel;
namespace VSTO
{
public partial class ThisAddIn
{
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
//Instantiate the Application object
Excel.Application ExcelApp = Application;
//Add a Workbook
Excel.Workbook workbook = ExcelApp.Workbooks.Add();
//Get the First sheet
Excel.Worksheet sheet = (Excel.Worksheet)workbook.Sheets["Sheet1"];
//Merge A1-B5 to one cell
sheet.get_Range("A1", "B5").Merge();
//Save the file
workbook.SaveAs("MergedCells.xlsx");
}
private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
{
}
#region VSTO generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InternalStartup()
{
this.Startup += new System.EventHandler(ThisAddIn_Startup);
this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
}
#endregion
}
}
Spire.XLS
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Spire.Xls;
namespace Spire.XLS
{
class Program
{
static void Main(string[] args)
{
//Initialize a new instance of workbook
Workbook workbook = new Workbook();
//Get the first worksheet
Worksheet sheet = workbook.Worksheets[0];
//Merge A1-B5 to one cell
sheet.Range["A1:B5"].Merge();
//Save and Launch
workbook.SaveToFile("MergedCells.xlsx", ExcelVersion.Version2010);
System.Diagnostics.Process.Start("MergedCells.xlsx");
}
}
}
혜도 컨트롤 네트워크
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Db2 Warehouse on Cloud (구 dashDB) 자습서: (2) 테이블 및 디스크 운영 관리Db2 Warehouse on Cloud를 쉽게 사용해 보는 방법을 안내합니다. 이것은 두 번째입니다. 지난번에는 데이터 로드 방법을 소개했습니다. 자세한 내용은 을 참조하십시오. 본 튜토리얼에서 소개하는 것은 용량...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.