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

Method DoDragDrop

Source/Engine/Platform/Window.cs:177–183  ·  view source on GitHub ↗

Starts the drag and drop operation. The data.

(DragData data)

Source from the content-addressed store, hash-verified

175 /// </summary>
176 /// <param name="data">The data.</param>
177 public void DoDragDrop(DragData data)
178 {
179 if (data is DragDataText text)
180 DoDragDrop(text.Text);
181 else
182 throw new NotImplementedException("Only DragDataText drag and drop is supported.");
183 }
184
185 private Window()
186 {

Callers

nothing calls this directly

Calls 1

DoDragDropFunction · 0.85

Tested by

no test coverage detected