MonobjcMonobjc Documented Class Library
HandleTextCheckingResultsForRangeTypesOptionsOrthographyWordCount Method (results, range, checkingTypes, options, orthography, wordCount)
NamespacesMonobjc.AppKitNSTextViewHandleTextCheckingResultsForRangeTypesOptionsOrthographyWordCount(NSArray, NSRange, NSTextCheckingTypes, NSDictionary, NSOrthography, NSInteger)

Handles the text checking results returned by the text view

Original signature is '- (void)handleTextCheckingResults:(NSArray *)results forRange:(NSRange)range types:(NSTextCheckingTypes)checkingTypes options:(NSDictionary *)options orthography:(NSOrthography *)orthography wordCount:(NSInteger)wordCount'

Available in Mac OS X v10.6 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void HandleTextCheckingResultsForRangeTypesOptionsOrthographyWordCount(
	NSArray results,
	NSRange range,
	NSTextCheckingTypes checkingTypes,
	NSDictionary options,
	NSOrthography orthography,
	NSInteger wordCount
)
Public Overridable Sub HandleTextCheckingResultsForRangeTypesOptionsOrthographyWordCount ( _
	results As NSArray, _
	range As NSRange, _
	checkingTypes As NSTextCheckingTypes, _
	options As NSDictionary, _
	orthography As NSOrthography, _
	wordCount As NSInteger _
)
public:
virtual void HandleTextCheckingResultsForRangeTypesOptionsOrthographyWordCount(
	NSArray^ results, 
	NSRange range, 
	NSTextCheckingTypes checkingTypes, 
	NSDictionary^ options, 
	NSOrthography^ orthography, 
	NSInteger wordCount
)
Parameters
results (NSArray)
An array of NSTextCheckingResult objects.
range (NSRange)
The range of text that was checked.
checkingTypes (NSTextCheckingTypes)
The type of checking performed. The possible constants are listed in NSTextCheckingTypes and can be combined using the C bit-wise OR operator to perform multiple checks at the same time.
options (NSDictionary)
The dictionary of values used during the checking process to perform. See Spell Checking Option Dictionary Keys for the supported values.
orthography (NSOrthography)
The orthography of the checked text.
wordCount (NSInteger)
The number of words.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)