Class SingleCharToken
Class used for character token.
Inheritance
System.Object
SingleCharToken
Implements
System.ICloneable
Inherited Members
Namespace: Syncfusion.XlsIO.FormatParser.FormatTokens
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
public abstract class SingleCharToken : FormatTokenBase, ICloneable
Constructors
SingleCharToken()
Initializes a new instance of the SingleCharToken class.
Declaration
public SingleCharToken()
Properties
FormatChar
Gets format character. Read-only.
Declaration
public abstract char FormatChar { get; }
Property Value
Type |
---|
System.Char |
Methods
ApplyFormat(ref Double, Boolean, CultureInfo, FormatSection)
Applies format to the value.
Declaration
public override string ApplyFormat(ref double value, bool bShowHiddenSymbols, CultureInfo culture, FormatSection section)
Parameters
Type | Name | Description |
---|---|---|
System.Double | value | Value to format. |
System.Boolean | bShowHiddenSymbols | Indicates whether to put in result hidden symbols. |
System.Globalization.CultureInfo | culture | Culture used to convert value into text. |
FormatSection | section | Parent section. |
Returns
Type | Description |
---|---|
System.String | Formatted value. |
Overrides
ApplyFormat(String, Boolean)
Applies format to the value.
Declaration
public override string ApplyFormat(string value, bool bShowHiddenSymbols)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | Value to format. |
System.Boolean | bShowHiddenSymbols | Indicates whether to put in result hidden symbols. |
Returns
Type | Description |
---|---|
System.String | Formatted value. |
Overrides
TryParse(String, Int32)
Tries to parse format string.
Declaration
public override int TryParse(string strFormat, int iIndex)
Parameters
Type | Name | Description |
---|---|---|
System.String | strFormat | Format string to parse. |
System.Int32 | iIndex | Position to start parsing at. |
Returns
Type | Description |
---|---|
System.Int32 | Position after parsed block. |
Overrides
Implements
System.ICloneable