MonobjcMonobjc Documented Class Library
IsWordInUserDictionariesCaseSensitive Method (word, caseSensitive)
NamespacesMonobjc.FoundationNSSpellServerIsWordInUserDictionariesCaseSensitive(NSString, Boolean)

Indicates whether a given word is in the user’s list of learned words or the document’s list of words to ignore.

Original signature is '- (BOOL)isWordInUserDictionaries:(NSString *)word caseSensitive:(BOOL)caseSensitive'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool IsWordInUserDictionariesCaseSensitive(
	NSString word,
	bool caseSensitive
)
Public Overridable Function IsWordInUserDictionariesCaseSensitive ( _
	word As NSString, _
	caseSensitive As Boolean _
) As Boolean
public:
virtual bool IsWordInUserDictionariesCaseSensitive(
	NSString^ word, 
	bool caseSensitive
)
Parameters
word (NSString)
The word to compare with those in the user dictionaries.
caseSensitive (Boolean)
Specifies whether the comparison is case sensitive.
Return Value
A Boolean value indicating whether the word is in the user dictionaries. If YES, the word is acceptable to the user.
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.Foundation (Module: Monobjc.Foundation)