Interface IMultiCellRecord
Inherited Members
Namespace: Syncfusion.XlsIO.Parser.Biff_Records
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
public interface IMultiCellRecord : ICellPositionFormat
Properties
FirstColumn
Zero-based index of the first column.
Declaration
int FirstColumn { get; set; }
Property Value
Type |
---|
System.Int32 |
LastColumn
Zero-based index of the last column.
Declaration
int LastColumn { get; set; }
Property Value
Type |
---|
System.Int32 |
SubRecordSize
Returns size of the sub record. Read-only.
Declaration
int SubRecordSize { get; }
Property Value
Type |
---|
System.Int32 |
SubRecordType
Returns type of the subrecord. Read-only.
Declaration
TBIFFRecord SubRecordType { get; }
Property Value
Type |
---|
TBIFFRecord |
Methods
GetSeparateSubRecordSize(ExcelVersion)
Returns size of the subrecord if it was placed as separate record (including BiffRecord header). Read-only.
Declaration
int GetSeparateSubRecordSize(ExcelVersion version)
Parameters
Type | Name | Description |
---|---|---|
ExcelVersion | version |
Returns
Type |
---|
System.Int32 |
Insert(ICellPositionFormat)
Inserts cell inside this record.
Declaration
void Insert(ICellPositionFormat cell)
Parameters
Type | Name | Description |
---|---|---|
ICellPositionFormat | cell | Cell to insert. |
Split(Boolean)
Splits record into subrecords.
Declaration
BiffRecordRaw[] Split(bool bIgnoreStyles)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | bIgnoreStyles | Indicates whether styles must be ignored. |
Returns
Type | Description |
---|---|
Syncfusion.XlsIO.Parser.Biff_Records.BiffRecordRaw[] | Array with all subrecords. |
Split(Int32)
Removes information about specified column from the record and splits record into two.
Declaration
ICellPositionFormat[] Split(int iColumnIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | iColumnIndex | Zero-based index of the column to remove. |
Returns
Type | Description |
---|---|
ICellPositionFormat[] | Split records. |