「Xamarin.MacでNSTextViewのスマートクォートを無効化する」の版間の差分
imported>Administrator 細 Administrator がページ「Xamarin.Mac/NSTextViewでスマートクォートを無効化する」を「Xamarin.MacでNSTextViewのスマートクォートを無効化する」に移動しました |
|||
| (同じ利用者による、間の1版が非表示) | |||
| 36行目: | 36行目: | ||
// disable Smart Quotes | // disable Smart Quotes | ||
// よくわからんのでAutomaticで始まるプロパティ全部にfalseを設定してみた | // よくわからんのでAutomaticで始まるプロパティ全部にfalseを設定してみた | ||
_nsTextView.AutomaticDashSubstitutionEnabled = false; | |||
_nsTextView.AutomaticDataDetectionEnabled = false; | |||
_nsTextView.AutomaticLinkDetectionEnabled = false; | |||
_nsTextView.AutomaticQuoteSubstitutionEnabled = false; | |||
_nsTextView.AutomaticSpellingCorrectionEnabled = false; | |||
_nsTextView.AutomaticTextReplacementEnabled = false; | |||
_nsTextView.EnabledTextCheckingTypes = 0; | |||
} | } | ||
} | } | ||