Version

RichTextRefreshTrigger Enumeration

Represents the possible conditions under which the Value of a RichTextDocumentAdapterBase should be refreshed.
Syntax
'Declaration
 
Public Enum RichTextRefreshTrigger 
   Inherits System.Enum
public enum RichTextRefreshTrigger : System.Enum 
Members
MemberDescription
ContentChangedThe Value is refreshed after every edit by the user. Note: This trigger could cause a performance issue with large documents. It should therefore only be used in editors which will only contain a small amount of text.
DelayedThe RichTextDocumentAdapterBase.DelayAfterFirstEdit and/or RichTextDocumentAdapterBase.DelayAfterLastEdit intervals can be set to non-null values to indicate a delay after certain edits when the Value should be refreshed. If neither is set, this trigger will act like the Explicit trigger.
ExplicitThe Value will never be refreshed automatically. The consumer must call RichTextDocumentAdapterBase.RefreshValue on the adapter to update the Value.
LostFocusThe Value is refreshed after the user leaves the editor hosting the Infragistics.Documents.RichText.RichTextDocument. If the document isn't displayed in an editor, this trigger will act like the Explicit trigger.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also