You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: controls/richtexteditor/events.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,15 +89,13 @@ The __RadRichTextEditor__ control raises the following specific events:
89
89
90
90
*__HyperlinkClicked__ - Occurs when the users clicks on a hyperlink in the current document. The event allows you to either cancel or replace the navigation logic. HyperlinkClicked event can be used as a confirmation from the end-user whether to proceed or not with opening a hyperlink due to security reasons. The event handler receives two arguments:
91
91
92
-
* The sender argument contains the __RadRichTextEditor__. This argument is of type object, but can be cast to the __RadRichTextEditor__ type.
92
+
* The sender argument contains the __Span__ containing the hyperlink's content. This argument is of type object, but can be cast to the __Span__ type.
93
93
94
94
* A __HyperlinkClickedEventArgs__ object. This argument allows you to access the following properties:
95
95
- __Handled__: Get or set a value indicating whether the event is handled.
96
96
- __HyperlinkTarget__: Gets the target hyperlink.
97
97
- __URL__: Gets the URL of the hyperlink.
98
-
- __IsTrustedUrl__: Gets a value tha indicates if the URL passes the validation. If the URL is not trusted, the hyperlink will not be opened. Set this property to true to open the hyperlink.
99
-
100
-
The default hyperlink navigation can be cancelled by setting either the __Handled__ property of the HyperlinkClickedEventArgs to _true_ or __IsTrustedUrl__ to _false_. This is helpful when you need to validate the clicked hyperlink and prevent it from navigating to an unsecure link or process. For more information see [Hyperlink]({%slug winforms/richtexteditor-/features/hyperlink%}) article.
98
+
- __IsTrustedUrl__: Gets a value tha indicates if the URL passes the validation. If the URL is not trusted, the hyperlink will not be opened. Set this property to true to open the hyperlink. For more information see [Hyperlink]({%slug winforms/richtexteditor-/features/hyperlink%}) article.
101
99
102
100
*__IsReadOnlyChanged__ - occurs when __IsReadOnly__ value has changed. The event handler receives two arguments:
0 commit comments