Class RequestNavigateEventArgs
This event arguments provides the necessary information about requestNavigate event.
Inherited Members
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.DocumentEditor.dll
Syntax
public class RequestNavigateEventArgs
Constructors
RequestNavigateEventArgs()
Declaration
public RequestNavigateEventArgs()
Properties
IsHandled
Specifies whether the event is handled or not.
Declaration
[JsonPropertyName("isHandled")]
public bool IsHandled { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
LinkType
Specifies the link type.
Declaration
[JsonPropertyName("linkType")]
[JsonConverter(typeof(JsonStringEnumConverter))]
public HyperlinkType LinkType { get; set; }
Property Value
| Type | Description |
|---|---|
| HyperlinkType | A value of the HyperlinkType enumeration that specifies the type of the link. |
LocalReference
Specifies the local reference if any.
Declaration
[JsonPropertyName("localReference")]
public string LocalReference { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
NavigationLink
Specifies the navigation link.
Declaration
[JsonPropertyName("navigationLink")]
public string NavigationLink { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |