C# Class Simplexcel.Workbook

Afficher le fichier Open project: mstum/Simplexcel

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
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

Method Details

Add() public méthode

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
Résultat void

Save() public méthode

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)
Résultat void

Save() public méthode

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
Résultat void

Save() public méthode

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)
Résultat void