MonobjcMonobjc Documented Class Library
IWebEditingDelegate Interface
NamespacesMonobjc.WebKitIWebEditingDelegate

[Missing <summary> documentation for "T:Monobjc.WebKit.IWebEditingDelegate"]

Declaration Syntax
C#Visual BasicVisual C++
public interface IWebEditingDelegate : IManagedWrapper
Public Interface IWebEditingDelegate _
	Inherits IManagedWrapper
public interface class IWebEditingDelegate : IManagedWrapper
Members
All MembersMethodsProperties



IconMemberDescription
CastAs<(Of <<'(T>)>>)()()()()
Try to cast the current instance to the given type. The cast is dynamically tested for safety.
(Inherited from IManagedWrapper.)
CastTo<(Of <<'(T>)>>)()()()()
Cast the current instance to the given type. The cast is dynamically tested for safety.
(Inherited from IManagedWrapper.)
NativePointer

Gets the underlying native pointer.

(Inherited from IManagedWrapper.)
SendMessage(String, array<Object>[]()[][])

Sends a message to this receiver (either a Class or an object instance).

(Inherited from IManagedWrapper.)
SendMessage<(Of <<'(TReturnType>)>>)(String, array<Object>[]()[][])

Sends a message to this receiver (either a Class or an object instance).

(Inherited from IManagedWrapper.)
SendMessageSuper(Class, String, array<Object>[]()[][])

Sends a message to the super instance of this receiver.

(Inherited from IManagedWrapper.)
SendMessageSuper<(Of <<'(TReturnType>)>>)(Class, String, array<Object>[]()[][])

Sends a message to the super instance of this receiver.

(Inherited from IManagedWrapper.)
SendMessageSuperVarArgs(Class, String, array<Object>[]()[][])

Sends a message to the super instance of this receiver.

The last parameter passed must be an object array that contains the variable list of arguments

(Inherited from IManagedWrapper.)
SendMessageSuperVarArgs<(Of <<'(TReturnType>)>>)(Class, String, array<Object>[]()[][])

Sends a message to the super instance of this receiver.

The last parameter passed must be an object array that contains the variable list of arguments

(Inherited from IManagedWrapper.)
SendMessageVarArgs(String, array<Object>[]()[][])

Sends a message to this receiver (either a Class or an object instance).

The last parameter passed must be an object array that contains the variable list of arguments

(Inherited from IManagedWrapper.)
SendMessageVarArgs<(Of <<'(TReturnType>)>>)(String, array<Object>[]()[][])

Sends a message to this receiver (either a Class or an object instance).

The last parameter passed must be an object array that contains the variable list of arguments

(Inherited from IManagedWrapper.)
UndoManagerForWebView(WebView)

Returns the undo manager to be used by a web view.

Original signature is '- (NSUndoManager *)undoManagerForWebView:(WebView *)webView'

Available in Mac OS X v10.3.9 and later.


WebViewDidBeginEditing(NSNotification)

Sent by the default notification center when the user begins editing the web view.

Original signature is '- (void)webViewDidBeginEditing:(NSNotification *)notification'

Available in Mac OS X v10.3.9 and later.


WebViewDidChange(NSNotification)

Sent by the default notification center when the user changes content in the web view.

Original signature is '- (void)webViewDidChange:(NSNotification *)notification'

Available in Mac OS X v10.3.9 and later.


WebViewDidChangeSelection(NSNotification)

Sent by the default notification center when the user changes the selection in the web view.

Original signature is '- (void)webViewDidChangeSelection:(NSNotification *)notification'

Available in Mac OS X v10.3.9 and later.


WebViewDidChangeTypingStyle(NSNotification)

Sent by the default notification center when the user changes the typing style in the web view.

Original signature is '- (void)webViewDidChangeTypingStyle:(NSNotification *)notification'

Available in Mac OS X v10.3.9 and later.


WebViewDidEndEditing(NSNotification)

Sent by the default notification center when the user stops editing the web view.

Original signature is '- (void)webViewDidEndEditing:(NSNotification *)notification'

Available in Mac OS X v10.3.9 and later.


WebViewDoCommandBySelector(WebView, IntPtr)

Returns whether the receiver performs a command instead of the web view.

Original signature is '- (BOOL)webView:(WebView *)webView doCommandBySelector:(SEL)command'

Available in Mac OS X v10.3.9 and later.


WebViewShouldApplyStyleToElementsInDOMRange(WebView, IntPtr, IntPtr)

Returns whether the user should be allowed to apply a style to a range of content.

Original signature is '- (BOOL)webView:(WebView *)webView shouldApplyStyle:(DOMCSSStyleDeclaration *)style toElementsInDOMRange:(DOMRange *)range'

Available in Mac OS X v10.3.9 and later.


WebViewShouldBeginEditingInDOMRange(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.


WebViewShouldChangeSelectedDOMRangeToDOMRangeAffinityStillSelecting(WebView, IntPtr, IntPtr, NSSelectionAffinity, Boolean)

Returns whether the user should be allowed to change the selected range.

Original signature is '- (BOOL)webView:(WebView *)webView shouldChangeSelectedDOMRange:(DOMRange *)currentRange toDOMRange:(DOMRange *)proposedRange affinity:(NSSelectionAffinity)selectionAffinity stillSelecting:(BOOL)flag'

Available in Mac OS X v10.3.9 and later.


WebViewShouldChangeTypingStyleToStyle(WebView, IntPtr, IntPtr)

Returns whether the user should be allowed to change the typing style in a web view.

Original signature is '- (BOOL)webView:(WebView *)webView shouldChangeTypingStyle:(DOMCSSStyleDeclaration *)currentStyle toStyle:(DOMCSSStyleDeclaration *)proposedStyle'

Available in Mac OS X v10.3.9 and later.


WebViewShouldDeleteDOMRange(WebView, IntPtr)

Returns whether the user should be allowed to delete a range of content.

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

Available in Mac OS X v10.3.9 and later.


WebViewShouldEndEditingInDOMRange(WebView, IntPtr)

Returns whether the user should be allowed to end editing.

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

Available in Mac OS X v10.3.9 and later.


WebViewShouldInsertNodeReplacingDOMRangeGivenAction(WebView, IntPtr, IntPtr, WebViewInsertAction)

Returns whether the user should be allowed to insert a node in place of a range of content.

Original signature is '- (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action'

Available in Mac OS X v10.3.9 and later.


WebViewShouldInsertTextReplacingDOMRangeGivenAction(WebView, NSString, IntPtr, WebViewInsertAction)

Returns whether a user should be allowed to insert text in place of a range of content.

Original signature is '- (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action'

Available in Mac OS X v10.3.9 and later.


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)