C# 클래스 Simplexcel.Worksheet

파일 보기 프로젝트 열기: mstum/Simplexcel 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
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