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)
90Assert.Equal(RichTextBoxLanguageOptions.AutoFont | RichTextBoxLanguageOptions.DualFont, control.LanguageOption); 1815foreach (RichTextBoxLanguageOptions options in Enum.GetValues(typeof(RichTextBoxLanguageOptions))) 1826public void RichTextBox_LanguageOption_CustomGetLangOptions_ReturnsExpected(IntPtr result, RichTextBoxLanguageOptions expected) 1855[EnumData<RichTextBoxLanguageOptions>] 1856public void RichTextBox_LanguageOption_Set_GetReturnsExpected(RichTextBoxLanguageOptions value) 1872[EnumData<RichTextBoxLanguageOptions>] 1873public void RichTextBox_LanguageOption_SetWithHandle_GetReturnsExpected(RichTextBoxLanguageOptions value) 1901[EnumData<RichTextBoxLanguageOptions>] 1902public unsafe void RichTextBox_LanguageOption_GetCharFormat_Success(RichTextBoxLanguageOptions value) 1908Assert.Equal(value, (RichTextBoxLanguageOptions)(int)PInvokeCore.SendMessage(control, PInvokeCore.EM_GETLANGOPTIONS));