コード例 #1
0
ファイル: CfxBrowserHost.cs プロジェクト: 386845154a/NanUI-1
 /// <summary>
 /// Call this function when the drag operation started by a
 /// CfxRenderHandler.StartDragging call has ended either in a drop or by
 /// being cancelled. |x| and |y| are mouse coordinates relative to the upper-
 /// left corner of the view. If the web view is both the drag source and the
 /// drag target then all DragTarget* functions should be called before
 /// DragSource* mthods. This function is only used when window rendering is
 /// disabled.
 /// </summary>
 /// <remarks>
 /// See also the original CEF documentation in
 /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_browser_capi.h">cef/include/capi/cef_browser_capi.h</see>.
 /// </remarks>
 public void DragSourceEndedAt(int x, int y, CfxDragOperationsMask op)
 {
     CfxApi.cfx_browser_host_drag_source_ended_at(NativePtr, x, y, (int)op);
 }