Exemple #1
0
 /// <summary>
 /// Create a new CfxDragData object.
 /// </summary>
 /// <remarks>
 /// See also the original CEF documentation in
 /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_drag_data_capi.h">cef/include/capi/cef_drag_data_capi.h</see>.
 /// </remarks>
 public static CfxDragData Create()
 {
     return(CfxDragData.Wrap(CfxApi.DragData.cfx_drag_data_create()));
 }
Exemple #2
0
 /// <summary>
 /// Returns a copy of the current object.
 /// </summary>
 /// <remarks>
 /// See also the original CEF documentation in
 /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_drag_data_capi.h">cef/include/capi/cef_drag_data_capi.h</see>.
 /// </remarks>
 public CfxDragData Clone()
 {
     return(CfxDragData.Wrap(CfxApi.DragData.cfx_drag_data_clone(NativePtr)));
 }