Class QuickTipRecord
This record contains the cell range and text for a ToolTip. It occurs in conjunction with the HLINK record for hyperlinks in the Hyperlink Table.
Inheritance
Inherited Members
Namespace: Syncfusion.XlsIO.Parser.Biff_Records
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
[Biff]
public class QuickTipRecord : BiffRecordRawWithArray, ICloneable, IBiffStorage, IDisposable
Constructors
QuickTipRecord()
Default constructor
Declaration
public QuickTipRecord()
QuickTipRecord(Int32)
Reserved for record's internal data array.
Declaration
public QuickTipRecord(int iReserve)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | iReserve | Amount of bytes for data array. |
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException | If amount of bytes requested is less than zero. |
QuickTipRecord(Stream, out Int32)
Read / initialize constructor.
Declaration
public QuickTipRecord(Stream stream, out int itemSize)
Parameters
Type | Name | Description |
---|---|---|
System.IO.Stream | stream | Stream from which record data should be read. |
System.Int32 | itemSize | Size of read item. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException | If stream is not specified. |
System.ApplicationException | If stream does not support read or seek operations. |
Properties
CellRange
Cell range address of all cells containing the ToolTip.
Declaration
public TAddr CellRange { get; set; }
Property Value
Type |
---|
TAddr |
MinimumRecordSize
Read-only. Returns minimum possible size of the record.
Declaration
public override int MinimumRecordSize { get; }
Property Value
Type |
---|
System.Int32 |
Overrides
ToolTip
ToolTip string.
Declaration
public string ToolTip { get; set; }
Property Value
Type |
---|
System.String |
Methods
GetStoreSize(ExcelVersion)
Size of the required storage space. Read-only.
Declaration
public override int GetStoreSize(ExcelVersion version)
Parameters
Type | Name | Description |
---|---|---|
ExcelVersion | version |
Returns
Type |
---|
System.Int32 |
Overrides
ParseStructure()
Parse structure of record. Converts data buffer to special values according to record specification.
Declaration
public override void ParseStructure()
Overrides
Exceptions
Type | Condition |
---|---|
WrongBiffRecordDataException | If the last symbol of string (it is also last symbol of the data array) is not zero. |