func spellServer (NSSpellServer, check: String, offset: Int, types: NSTextCheckingTypes, options: [String : Any]?, orthography: NSOrthography?, wordCount : UnsafeMutablePointer<Int>) -> [NSTextCheckingResult]?
Gives the delegate the opportunity to analyze both the spelling and grammar simultaneously, which is more efficient.
委任先にスペルと文法の両方を同時に分析する機会を与えます、それはより効率的です。
func spellServer (NSSpellServer, suggestGuessesForWord : String, inLanguage : String) -> [String]?
Gives the delegate the opportunity to suggest guesses to the sender for the correct spelling of the given misspelled word in the specified language.
この与えられた綴り間違い単語の正しい綴りについて指定された言語においてセンダーに推測を提案する機会を委任先に与えます。
func spellServer (NSSpellServer, checkGrammarIn : String, language: String?, details: AutoreleasingUnsafeMutablePointer<NSArray?>?) -> NSRange
Gives the delegate the opportunity to customize the grammatical analysis of a given string.
ある与えられた文字列の文法的解析をカスタマイズする機会を委任先に与えます。
func spellServer (NSSpellServer, findMisspelledWordIn : String, language: String, wordCount : UnsafeMutablePointer<Int>, countOnly : Bool) -> NSRange
Asks the delegate to search for a misspelled word in a given string, using the specified language, and marking the first misspelled word found by returning its range within the string.
綴り間違い単語をある与えられた文字列中で捜すように委任先に頼みます、指定された言語を使って、そして見つかった最初の綴り間違い単語をその文字列内のそれの範囲を返すことによって印します。