Class TAddr
Each cell range address (called an ADDR structure) contains 4 16-bit values. Cell range address, BIFF8:
Inheritance
System.Object
TAddr
Namespace: Syncfusion.XlsIO.Parser.Biff_Records
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
public sealed class TAddr : ValueType
Constructors
TAddr(Rectangle)
Initializes new instance.
Declaration
public TAddr(Rectangle rect)
Parameters
Type | Name | Description |
---|---|---|
Rectangle | rect | Rectangle containing initialization data. |
TAddr(Int32, Int32)
Initializes new instance.
Declaration
public TAddr(int iTopLeftIndex, int iBottomRightIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | iTopLeftIndex | Index of the top left cell. |
System.Int32 | iBottomRightIndex | Index of the bottom right cell. |
TAddr(Int32, Int32, Int32, Int32)
Initializes new instance.
Declaration
public TAddr(int iFirstRow, int iFirstCol, int iLastRow, int iLastCol)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | iFirstRow | First row. |
System.Int32 | iFirstCol | First column. |
System.Int32 | iLastRow | Last row. |
System.Int32 | iLastCol | Last column. |
Properties
FirstCol
Index to first column.
Declaration
public int FirstCol { get; set; }
Property Value
Type |
---|
System.Int32 |
FirstRow
Index to first row.
Declaration
public int FirstRow { get; set; }
Property Value
Type |
---|
System.Int32 |
LastCol
Index to last column.
Declaration
public int LastCol { get; set; }
Property Value
Type |
---|
System.Int32 |
LastRow
Index to last row.
Declaration
public int LastRow { get; set; }
Property Value
Type |
---|
System.Int32 |
Methods
GetRectangle()
Converts structure to rectangle.
Declaration
public Rectangle GetRectangle()
Returns
Type | Description |
---|---|
Rectangle | Created rectangle. |
ToString()
Converts object to the string.
Declaration
public override string ToString()
Returns
Type |
---|
System.String |