C# Class Simplexcel.Worksheet

Afficher le fichier Open project: mstum/Simplexcel Class Usage Examples

Méthodes publiques

Свойство Type Description
InvalidSheetNameChars char[]
MaxSheetNameLength int

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
Worksheet ( string name ) : System

Create a new Worksheet with the given name

this ( int row, int column ) : Cell

Get the cell with the given zero based row and column, e.g. [0,0] returns the A1 cell. May return NULL.

this ( string address ) : Cell

Get the cell with the given cell reference, e.g. Get the cell "A1". May return NULL.

Method Details

Worksheet() public méthode

Create a new Worksheet with the given name
public Worksheet ( string name ) : System
name string
Résultat System

this() public méthode

Get the cell with the given zero based row and column, e.g. [0,0] returns the A1 cell. May return NULL.
public this ( int row, int column ) : Cell
row int
column int
Résultat Cell

this() public méthode

Get the cell with the given cell reference, e.g. Get the cell "A1". May return NULL.
public this ( string address ) : Cell
address string
Résultat Cell

Property Details

InvalidSheetNameChars public_oe static_oe property

Get a list of characters that are invalid to use in the Sheet Name
These chars are not part of the ECMA-376 standard, but imposed by Excel
public static char[] InvalidSheetNameChars
Résultat char[]

MaxSheetNameLength public_oe static_oe property

Get the maximum allowable length for a sheet name
This limit is not part of the ECMA-376 standard, but imposed by Excel
public static int MaxSheetNameLength
Résultat int