Class UriAction
Represents an action that navigates to a URI (Uniform Resource Identifier), typically used for web links or external resources.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.Actions
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class UriAction : Action
Constructors
UriAction()
UriAction(Uri)
Initializes a new instance of the UriAction class.
Declaration
public UriAction(Uri uri)
Parameters
System.Uri
uri
The URI. |
Properties
IncludeMouseCoordinates
Gets or sets a value indicating whether the mouse coordinates should be included in the URI when the action is triggered.
Declaration
public bool? IncludeMouseCoordinates { get; set; }
Property Value
System.Nullable<System.Boolean>
true if the mouse coordinates should be included; otherwise, false. |
Uri
Gets or sets the target URI that will be opened when this action is executed.
Declaration
public Uri Uri { get; set; }
Property Value
System.Uri
The URI object representing the web address, file path, or other resource location. |