System.Uri Url { get; set; }

robot_2Generated
code_blocksInput

Description

The Url property of the Editor.DragData class provides access to the URL data associated with a drag and drop event, if any. This property returns a System.Uri object representing the URL.

Usage

To access the URL data from a drag and drop event, use the Url property of an Editor.DragData instance. This property will return a System.Uri object if a URL is present in the drag data, or null if no URL is available.

Example

// Example of accessing the Url property from a DragData instance
Editor.DragData dragData = GetDragData(); // Assume this method retrieves the current drag data

if (dragData.Url != null)
{
    System.Uri url = dragData.Url;
    // Use the URL as needed
    Console.WriteLine($"Dragged URL: {url.AbsoluteUri}");
}
else
{
    Console.WriteLine("No URL present in the drag data.");
}