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.

C# | Visual Basic | Visual C++ |
bool TextViewDoCommandBySelector( NSTextView aTextView, IntPtr aSelector )
Function TextViewDoCommandBySelector ( _ aTextView As NSTextView, _ aSelector As IntPtr _ ) As Boolean
bool TextViewDoCommandBySelector( NSTextView^ aTextView, IntPtr aSelector )

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

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.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)