MonobjcMonobjc Documented Class Library
TextViewDoCommandBySelector Method (aTextView, aSelector)
NamespacesMonobjc.AppKitNSTableViewTextViewDoCommandBySelector(NSTextView, IntPtr)

Sent to allow the delegate to perform the command for the text view.

Original signature is '- (BOOL)textView:(NSTextView *)aTextView doCommandBySelector:(SEL)aSelector'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool TextViewDoCommandBySelector(
	NSTextView aTextView,
	IntPtr aSelector
)
Public Overridable Function TextViewDoCommandBySelector ( _
	aTextView As NSTextView, _
	aSelector As IntPtr _
) As Boolean
public:
virtual bool TextViewDoCommandBySelector(
	NSTextView^ aTextView, 
	IntPtr aSelector
)
Parameters
aTextView (NSTextView)
The text view sending the message. This is the first text view in a series shared by a layout manager.
aSelector (IntPtr)
The selector.
Return Value
YES indicates that the delegate handled the command and the text view will not attempt to perform it; NO indicates that the delegate did not handle the command the text view will attempt to perform it.
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.AppKit (Module: Monobjc.AppKit)