Returns the range of characters that form a word (or other linguistic unit) surrounding the given index, taking language characteristics into account.
Original signature is '- (NSRange)doubleClickAtIndex:(NSUInteger)index'
Available in Mac OS X v10.0 and later.

C# | Visual Basic | Visual C++ |
public static NSRange DoubleClickAtIndex( this NSAttributedString __target, NSUInteger index )
<ExtensionAttribute> _ Public Shared Function DoubleClickAtIndex ( _ __target As NSAttributedString, _ index As NSUInteger _ ) As NSRange
[ExtensionAttribute] public: static NSRange DoubleClickAtIndex( NSAttributedString^ __target, NSUInteger index )

- __target (NSAttributedString)
- The target instance.
- index (NSUInteger)
- MISSING

[Missing <returns> documentation for "M:Monobjc.AppKit.NSAttributedString_AppKitAdditions.DoubleClickAtIndex(Monobjc.Foundation.NSAttributedString,Monobjc.Foundation.NSUInteger)"]

In Visual Basic and C#, you can call this method as an instance method on any object of type NSAttributedString. When you use instance method syntax to call this method, omit the first parameter.

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