Class CFVO
Conditional Formatting Value Object (CFVO).
Inheritance
System.Object
CFVO
Namespace: Syncfusion.XlsIO.Parser.Biff_Records
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
public class CFVO : Object
Constructors
CFVO()
Default constructor.
Declaration
public CFVO()
Properties
CFVOType
CFVO type.
Declaration
public ConditionValueType CFVOType { get; set; }
Property Value
Type |
---|
ConditionValueType |
FormulaBytes
Returns bytes of the formula. Read-only.
Declaration
public byte[] FormulaBytes { get; }
Property Value
Type |
---|
System.Byte[] |
FormulaPtgs
Parsed formula string.
Declaration
public Ptg[] FormulaPtgs { get; set; }
Property Value
Type |
---|
Ptg[] |
FormulaSize
Size of the formula data. Read-only.
Declaration
public ushort FormulaSize { get; }
Property Value
Type |
---|
System.UInt16 |
NumValue
CFVO type.
Declaration
public double NumValue { get; set; }
Property Value
Type |
---|
System.Double |
Value
CFVO value.
Declaration
public string Value { get; set; }
Property Value
Type |
---|
System.String |
Methods
GetStoreSize(ExcelVersion)
Size of the required storage space. Read-only.
Declaration
public int GetStoreSize(ExcelVersion version)
Parameters
Type | Name | Description |
---|---|---|
ExcelVersion | version |
Returns
Type |
---|
System.Int32 |
ParseCFVO(DataProvider, Int32, ExcelVersion)
Parse structure of template parameter. Converts data buffer to special values according to record specification.
Declaration
public int ParseCFVO(DataProvider provider, int iOffset, ExcelVersion version)
Parameters
Type | Name | Description |
---|---|---|
DataProvider | provider | Object that provides access to the data. |
System.Int32 | iOffset | Offset to the record's data. |
ExcelVersion | version | Excel version used for infill. |
Returns
Type |
---|
System.Int32 |
SerializeCFVO(DataProvider, Int32, ExcelVersion)
In this method, class must pack all of its properties into an internal data array, m_data. This method is called by FillStream, when the record must be serialized into a stream.
Declaration
public int SerializeCFVO(DataProvider provider, int iOffset, ExcelVersion version)
Parameters
Type | Name | Description |
---|---|---|
DataProvider | provider | Object that provides access to the data. |
System.Int32 | iOffset | Offset in the buffer. |
ExcelVersion | version | Excel version used for infill. |
Returns
Type |
---|
System.Int32 |