C# Class ExcelToolKit.BinaryFormat.XlsBiffRecord

BIFF:Binary Interchange File Format Represents basic BIFF record Base class for all BIFF record types
Afficher le fichier Open project: fanfeilong/exceltk Class Usage Examples

Protected Properties

Свойство Type Description
m_bytes byte[]
m_readoffset int
reader ExcelBinaryReader

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
GetRecord ( byte bytes, uint offset, ExcelBinaryReader reader ) : XlsBiffRecord

Returns record at specified offset

ReadArray ( int offset, int size ) : byte[]
ReadByte ( int offset ) : byte
ReadDouble ( int offset ) : double
ReadFloat ( int offset ) : float
ReadInt16 ( int offset ) : short
ReadInt32 ( int offset ) : int
ReadInt64 ( int offset ) : long
ReadUInt16 ( int offset ) : ushort
ReadUInt32 ( int offset ) : uint
ReadUInt64 ( int offset ) : ulong

Méthodes protégées

Méthode Description
XlsBiffRecord ( byte bytes, uint offset, ExcelBinaryReader reader ) : System

Method Details

GetRecord() public static méthode

Returns record at specified offset
public static GetRecord ( byte bytes, uint offset, ExcelBinaryReader reader ) : XlsBiffRecord
bytes byte byte array
offset uint position in array
reader ExcelBinaryReader
Résultat XlsBiffRecord

ReadArray() public méthode

public ReadArray ( int offset, int size ) : byte[]
offset int
size int
Résultat byte[]

ReadByte() public méthode

public ReadByte ( int offset ) : byte
offset int
Résultat byte

ReadDouble() public méthode

public ReadDouble ( int offset ) : double
offset int
Résultat double

ReadFloat() public méthode

public ReadFloat ( int offset ) : float
offset int
Résultat float

ReadInt16() public méthode

public ReadInt16 ( int offset ) : short
offset int
Résultat short

ReadInt32() public méthode

public ReadInt32 ( int offset ) : int
offset int
Résultat int

ReadInt64() public méthode

public ReadInt64 ( int offset ) : long
offset int
Résultat long

ReadUInt16() public méthode

public ReadUInt16 ( int offset ) : ushort
offset int
Résultat ushort

ReadUInt32() public méthode

public ReadUInt32 ( int offset ) : uint
offset int
Résultat uint

ReadUInt64() public méthode

public ReadUInt64 ( int offset ) : ulong
offset int
Résultat ulong

XlsBiffRecord() protected méthode

protected XlsBiffRecord ( byte bytes, uint offset, ExcelBinaryReader reader ) : System
bytes byte
offset uint
reader ExcelBinaryReader
Résultat System

Property Details

m_bytes protected_oe property

protected byte[] m_bytes
Résultat byte[]

m_readoffset protected_oe property

protected int m_readoffset
Résultat int

reader protected_oe property

protected ExcelBinaryReader reader
Résultat ExcelBinaryReader