Skip to content

Commit bbc2eec

Browse files
committed
Update events.md
1 parent e23dc0c commit bbc2eec

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

controls/richtexteditor/events.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,13 @@ The __RadRichTextEditor__ control raises the following specific events:
8989

9090
* __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:
9191

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.
9393
9494
* A __HyperlinkClickedEventArgs__ object. This argument allows you to access the following properties:
9595
- __Handled__: Get or set a value indicating whether the event is handled.
9696
- __HyperlinkTarget__: Gets the target hyperlink.
9797
- __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.
10199
102100
* __IsReadOnlyChanged__ - occurs when __IsReadOnly__ value has changed. The event handler receives two arguments:
103101

0 commit comments

Comments
 (0)