Class SelectionRecord.TAddr
Each cell range address (called an ADDR structure) contains 4 16-bit values. Cell range address, BIFF8.
Inheritance
System.Object
SelectionRecord.TAddr
Namespace: Syncfusion.XlsIO.Parser.Biff_Records
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
public sealed class TAddr : ValueType
Constructors
TAddr(UInt16, UInt16, Byte, Byte)
Creates TAddr by specified first and last rows and first and last columns.
Declaration
public TAddr(ushort FirstRow, ushort LastRow, byte FirstCol, byte LastCol)
Parameters
Type | Name | Description |
---|---|---|
System.UInt16 | FirstRow | First row of the cell range. |
System.UInt16 | LastRow | Last row of the cell range. |
System.Byte | FirstCol | First column of the cell range. |
System.Byte | LastCol | Last column of the cell range. |
Fields
m_FirstCol
Index to first column.
Declaration
public byte m_FirstCol
Field Value
Type |
---|
System.Byte |
m_LastCol
Index to last column.
Declaration
public byte m_LastCol
Field Value
Type |
---|
System.Byte |
m_usFirstRow
Index to first row.
Declaration
public ushort m_usFirstRow
Field Value
Type |
---|
System.UInt16 |
m_usLastRow
Index to last row.
Declaration
public ushort m_usLastRow
Field Value
Type |
---|
System.UInt16 |
Methods
ToString()
Converts object to the string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | String representation of the object. |