MonobjcMonobjc Documented Class Library
WebViewShouldBeginEditingInDOMRangeMessage Method (webView, range)
NamespacesMonobjc.WebKitWebView..::..WebEditingDelegateEventDispatcherWebViewShouldBeginEditingInDOMRangeMessage(WebView, IntPtr)

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 bool WebViewShouldBeginEditingInDOMRangeMessage(
	WebView webView,
	IntPtr range
)
Public Function WebViewShouldBeginEditingInDOMRangeMessage ( _
	webView As WebView, _
	range As IntPtr _
) As Boolean
public:
bool WebViewShouldBeginEditingInDOMRangeMessage(
	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)