Creates and returns a text checking result after locating a misspelled word.
Original signature is '+ (NSTextCheckingResult *)spellCheckingResultWithRange:(NSRange)range'
Available in Mac OS X v10.6 and later.

C# | Visual Basic | Visual C++ |
public static NSTextCheckingResult SpellCheckingResultWithRange( NSRange range )
Public Shared Function SpellCheckingResultWithRange ( _ range As NSRange _ ) As NSTextCheckingResult
public: static NSTextCheckingResult^ SpellCheckingResultWithRange( NSRange range )

- range (NSRange)
- The range of the detected result.

Returns an NSTextCheckingResult with the specified range and a resultType of NSTextCheckingTypeSpelling.

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