MonobjcMonobjc Documented Class Library
WebView..::..WebViewShouldBeginEditingInDOMRangeEventHandler Delegate
NamespacesMonobjc.WebKitWebViewWebView..::..WebViewShouldBeginEditingInDOMRangeEventHandler

Returns whether the user is allowed to edit a range of content in a web view.

Original signature is '- (BOOL)webView:(WebView *)webView shouldBeginEditingInDOMRange:(DOMRange *)range'

Available in Mac OS X v10.3.9 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate bool WebViewShouldBeginEditingInDOMRangeEventHandler(
	WebView webView,
	IntPtr range
)
Public Delegate Function WebViewShouldBeginEditingInDOMRangeEventHandler ( _
	webView As WebView, _
	range As IntPtr _
) As Boolean
public delegate bool WebViewShouldBeginEditingInDOMRangeEventHandler(
	WebView^ webView, 
	IntPtr range
)
Parameters
webView (WebView)
The web view that the user is editing.
range (IntPtr)
The section of the begin-editing request; used to determine if editing is allowed. Typically, range is not the current selection but may becomes the current selection if this method returns YES.
Return Value
YES if the user is allowed to edit webView; otherwise, NO.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.WebKit (Module: Monobjc.WebKit)