Class DragDataItem
public sealed record DragDataItem : IEquatable<DragDataItem>
- Inheritance
-
DragDataItem
- Implements
- Inherited Members
Constructors
DragDataItem(string, string)
public DragDataItem(string MimeType, string Data)
Parameters
MimeTypestringMime type of the dragged data.
DatastringDepending of the value of mimeType, it contains the dragged link, text, HTML markup or any other data.
Properties
BaseURL
Stores the base URL for the contained markup. Only valid when mimeType == "text/html".
public string? BaseURL { get; init; }
Property Value
Data
Depending of the value of mimeType, it contains the dragged link, text, HTML markup or any other data.
public string Data { get; init; }
Property Value
MimeType
Mime type of the dragged data.
public string MimeType { get; init; }
Property Value
Title
Title associated with a link. Only valid when mimeType == "text/uri-list".
public string? Title { get; init; }