Skip to main content

TdxRichEditNotificationOptions Class

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

Declaration

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