C# 클래스 Simplexcel.Workbook

파일 보기 프로젝트 열기: mstum/Simplexcel

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Add ( Worksheet sheet ) : void

Add a worksheet to this workbook. Sheet names must be unique.

Save ( Stream stream, CompressionLevel compressionLevel ) : void

Save this workbook to the given stream

Save ( string filename ) : void

Save this workbook to a file, overwriting the file if it exists

Save ( string filename, CompressionLevel compressionLevel ) : void

Save this workbook to a file, overwriting the file if it exists

메소드 상세

Add() 공개 메소드

Add a worksheet to this workbook. Sheet names must be unique.
Thrown if a sheet with the same Name already exists
public Add ( Worksheet sheet ) : void
sheet Worksheet
리턴 void

Save() 공개 메소드

Save this workbook to the given stream
Thrown if there are no sheets in the workbook.
public Save ( Stream stream, CompressionLevel compressionLevel ) : void
stream Stream
compressionLevel CompressionLevel How much should content in a workbook be compressed? (Higher CPU Usage)
리턴 void

Save() 공개 메소드

Save this workbook to a file, overwriting the file if it exists
Thrown if there are no sheets in the workbook.
public Save ( string filename ) : void
filename string
리턴 void

Save() 공개 메소드

Save this workbook to a file, overwriting the file if it exists
Thrown if there are no sheets in the workbook.
public Save ( string filename, CompressionLevel compressionLevel ) : void
filename string
compressionLevel CompressionLevel How much should content in a workbook be compressed? (Higher CPU Usage)
리턴 void