You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CefSharp/IBrowserHost.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ public interface IBrowserHost : IDisposable
21
21
/// <summary>
22
22
/// Add the specified word to the spelling dictionary.
23
23
/// </summary>
24
-
/// <param name="word"></param>
24
+
/// <param name="word">custom word to be added to dictionary</param>
25
25
voidAddWordToDictionary(stringword);
26
26
27
27
/// <summary>
@@ -66,7 +66,7 @@ public interface IBrowserHost : IDisposable
66
66
voidDragTargetDragDrop(MouseEventmouseEvent);
67
67
68
68
/// <summary>
69
-
/// Call this method when the drag operation started by a <see cref="CefSharp.Internals.IRenderWebBrowser.StartDragging"/> call has ended either in a drop or by being cancelled.
69
+
/// Call this method when the drag operation started by a <see cref="CefSharp.Internals.IRenderWebBrowser.StartDragging(IDragData, DragOperationsMask, int, int)"/> call has ended either in a drop or by being cancelled.
70
70
/// If the web view is both the drag source and the drag target then all DragTarget* methods should be called before DragSource* methods.
71
71
/// This method is only used when window rendering is disabled.
72
72
/// </summary>
@@ -82,7 +82,7 @@ public interface IBrowserHost : IDisposable
82
82
voidDragTargetDragLeave();
83
83
84
84
/// <summary>
85
-
/// Call this method when the drag operation started by a <see cref="CefSharp.Internals.IRenderWebBrowser.StartDragging"/> call has completed.
85
+
/// Call this method when the drag operation started by a <see cref="CefSharp.Internals.IRenderWebBrowser.StartDragging(IDragData, DragOperationsMask, int, int)"/> call has completed.
86
86
/// This method may be called immediately without first calling DragSourceEndedAt to cancel a drag operation.
87
87
/// If the web view is both the drag source and the drag target then all DragTarget* methods should be called before DragSource* mthods.
88
88
/// This method is only used when window rendering is disabled.
0 commit comments