Defines different action types that can trigger update of a source.
Definition
Namespace:Telerik.WinForms.Documents.FormatProviders
Assembly:Telerik.WinControls.RichTextEditor.dll
Syntax:
C#
public enum DataProviderUpdateSourceTrigger
Fields
The default trigger is PropertyChanged.
C#
Default = 0
The explicit trigger. The source is updated explicitly only.
C#
Explicit = 2
The lost focus trigger. The update of the source is triggered when it losts focus.
C#
LostFocus = 1
The property changed trigger. The update of the source is triggered when the value of one of the properties changes.
C#
PropertyChanged = 0