Class CellValueFormatResultItem
Represents a single text segment within a formatted cell value, with attributes controlling visibility and expansion behavior.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Formatting.FormatStrings
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class CellValueFormatResultItem
Constructors
CellValueFormatResultItem(String, Boolean, Boolean, Boolean)
Initializes a new instance of the CellValueFormatResultItem class with specified text and formatting attributes.
Declaration
public CellValueFormatResultItem(string text, bool isTransparent, bool shouldExpand, bool applyFormat)
Parameters
|
System.String
text
The text. |
|
System.Boolean
isTransparent
The is transparent. |
|
System.Boolean
shouldExpand
The should expand. |
|
System.Boolean
applyFormat
The apply format. |
Properties
ApplyFormat
Indicates whether formatting should be applied to this segment.
Declaration
public bool ApplyFormat { get; }
Property Value
|
System.Boolean
The apply format. |
IsTransparent
Indicates whether this segment is transparent and should not be rendered visually.
Declaration
public bool IsTransparent { get; }
Property Value
|
System.Boolean
The is transparent. |
ShouldExpand
Indicates whether this segment should expand to fill available horizontal space.
Declaration
public bool ShouldExpand { get; }
Property Value
|
System.Boolean
The should expand. |
Text
Formatted text content of this segment.
Declaration
public string Text { get; }
Property Value
|
System.String
The text. |