Cancels downloading of a resource that started with Download method.
The ID of the downloaded resource as provided by OnBeforeDownload event.
Cancels downloading of a resource that started with Download method.
Visual Basic |
---|
Public Sub CancelDownload( _ ByVal Id As Long _ ) |
The ID of the downloaded resource as provided by OnBeforeDownload event.
Private Sub mnuCancelDownload_Click() On Error Resume Next WebKitX1.CancelDownload DownloadID End Sub
private void menuItemCancelDownload_Click(object sender, EventArgs e) { WebKitXCEF31.CancelDownload(DonwloadID); }