MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / GetDragData

Method GetDragData

Source/Editor/GUI/Drag/DragNames.cs:58–64  ·  view source on GitHub ↗

Gets the drag data. The drag dat prefix. The name. The data.

(string dragPrefix, string name)

Source from the content-addressed store, hash-verified

56 /// <param name="name">The name.</param>
57 /// <returns>The data.</returns>
58 public static DragData GetDragData(string dragPrefix, string name)
59 {
60 if (name == null)
61 throw new ArgumentNullException();
62
63 return new DragDataText(dragPrefix + name);
64 }
65
66 /// <summary>
67 /// Gets the drag data.

Callers 12

OnDragParameterMethod · 0.45
DoDragDropMethod · 0.45
DoDragDropMethod · 0.45
DoDragDropMethod · 0.45
DoDragMethod · 0.45
DoDragMethod · 0.45
DoDragDropMethod · 0.45
InitializeMethod · 0.45
DoDragMethod · 0.45
CreateEditorAssetItemMethod · 0.45
CreateActorItemMethod · 0.45
CreateControlItemMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected