Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxSpreadSheetTextService.SetAsRTF(TdxSpreadSheetCell,string) Method

Assigns a formatted RTF string to the specified cell object.

#Declaration

Delphi
class function SetAsRTF(ACell: TdxSpreadSheetCell; const AEditValue: string): Boolean; virtual;

#Parameters

Name Type
ACell TdxSpreadSheetCell
AEditValue string

#Returns

Type
Boolean

#Remarks

This class function accepts the target cell object as the ACell parameter and attempts to replace the current cell value with an RTF string passed as the AEditValue parameter. The function returns True if an attempt is successful; otherwise – False. A cell object’s SetAsRTF function calls the registered spreadsheet text service’s SetAsRTF function via the dxSpreadSheetTextService global variable.

This SetAsRTF class function’s implementation is empty and always returns False, since the basic text service does not support formatted text. Each TdxSpreadSheetTextService class descendant that provides support for RTF strings has its own SetAsRTF function implementation.

See Also