「Xamarin.MacでNSTextViewのスマートクォートを無効化する」の版間の差分

imported>Administrator
36行目: 36行目:
             // disable Smart Quotes  
             // disable Smart Quotes  
             // よくわからんのでAutomaticで始まるプロパティ全部にfalseを設定してみた
             // よくわからんのでAutomaticで始まるプロパティ全部にfalseを設定してみた
             _startupScript.AutomaticDashSubstitutionEnabled = false;
             _nsTextView.AutomaticDashSubstitutionEnabled = false;
             _startupScript.AutomaticDataDetectionEnabled = false;
             _nsTextView.AutomaticDataDetectionEnabled = false;
             _startupScript.AutomaticLinkDetectionEnabled = false;
             _nsTextView.AutomaticLinkDetectionEnabled = false;
             _startupScript.AutomaticQuoteSubstitutionEnabled = false;
             _nsTextView.AutomaticQuoteSubstitutionEnabled = false;
             _startupScript.AutomaticSpellingCorrectionEnabled = false;
             _nsTextView.AutomaticSpellingCorrectionEnabled = false;
             _startupScript.AutomaticTextReplacementEnabled = false;
             _nsTextView.AutomaticTextReplacementEnabled = false;
             _startupScript.EnabledTextCheckingTypes = 0;
             _nsTextView.EnabledTextCheckingTypes = 0;
         }
         }
     }
     }