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

TdxRichEditNotificationOptions Class

The base class for all classes that implement the Rich Edit control’s property sets.

#Declaration

Delphi
TdxRichEditNotificationOptions = class(
    TInterfacedPersistent
)

#Remarks

The Rich Edit control’s internal objects, such as the Document Server and Document Model, respond to the changes made to the options provided by the control’s public API via notifications sent by the option set objects. The TdxRichEditNotificationOptoins class implements the notification sending functionality required by all option set objects implementing all the Rich Edit control’s customizable options.

The TdxRichEditNotificationOptions class extends its ancestor with the following members that allow you to:

  • Respond to the stored setting value changes (Changed);

  • Restore the default values of all settings within the option set (Reset);

  • Improve performance by preventing the option set’s listeners from repeated refreshing (BeginUpdate, EndUpdate, and CancelUpdate).

You do not need to create instances of the TdxRichEditNotificationOptions class. Use its descendants instead.

#Inheritance

TObject
TPersistent
TInterfacedPersistent
TdxRichEditNotificationOptions
See Also