17 references to RichTextBoxLanguageOptions
System.Windows.Forms (5)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (5)
62private RichTextBoxLanguageOptions _languageOption = RichTextBoxLanguageOptions.AutoFont | RichTextBoxLanguageOptions.DualFont; 462public RichTextBoxLanguageOptions LanguageOption 465? (RichTextBoxLanguageOptions)(int)PInvokeCore.SendMessage(this, PInvokeCore.EM_GETLANGOPTIONS)
System.Windows.Forms.Tests (12)
System\Windows\Forms\RichTextBoxTests.cs (12)
92Assert.Equal(RichTextBoxLanguageOptions.AutoFont | RichTextBoxLanguageOptions.DualFont, control.LanguageOption); 1817foreach (RichTextBoxLanguageOptions options in Enum.GetValues(typeof(RichTextBoxLanguageOptions))) 1828public void RichTextBox_LanguageOption_CustomGetLangOptions_ReturnsExpected(IntPtr result, RichTextBoxLanguageOptions expected) 1857[EnumData<RichTextBoxLanguageOptions>] 1858public void RichTextBox_LanguageOption_Set_GetReturnsExpected(RichTextBoxLanguageOptions value) 1874[EnumData<RichTextBoxLanguageOptions>] 1875public void RichTextBox_LanguageOption_SetWithHandle_GetReturnsExpected(RichTextBoxLanguageOptions value) 1903[EnumData<RichTextBoxLanguageOptions>] 1904public unsafe void RichTextBox_LanguageOption_GetCharFormat_Success(RichTextBoxLanguageOptions value) 1910Assert.Equal(value, (RichTextBoxLanguageOptions)(int)PInvokeCore.SendMessage(control, PInvokeCore.EM_GETLANGOPTIONS));