C# Класс Simplexcel.Worksheet

Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
InvalidSheetNameChars char[]
MaxSheetNameLength int

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
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.

Описание методов

Worksheet() публичный Метод

Create a new Worksheet with the given name
public Worksheet ( string name ) : System
name string
Результат System

this() публичный Метод

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
Результат Cell

this() публичный Метод

Get the cell with the given cell reference, e.g. Get the cell "A1". May return NULL.
public this ( string address ) : Cell
address string
Результат Cell

Описание свойств

InvalidSheetNameChars публичное статическое свойство

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
Результат char[]

MaxSheetNameLength публичное статическое свойство

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
Результат int