27 references to _richTextBoxFlags
System.Windows.Forms (27)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (27)
101_richTextBoxFlags[s_autoWordSelectionSection] = 0; // This is false by default 119get => _richTextBoxFlags[s_allowOleDropSection] != 0; 122_richTextBoxFlags[s_allowOleDropSection] = value ? 1 : 0; 129get => _richTextBoxFlags[s_allowOleObjectsSection] != 0; 132_richTextBoxFlags[s_allowOleObjectsSection] = value ? 1 : 0; 163get => _richTextBoxFlags[s_autoWordSelectionSection] != 0; 166_richTextBoxFlags[s_autoWordSelectionSection] = value ? 1 : 0; 238get => _richTextBoxFlags[s_callOnContentsResizedSection] != 0; 239set => _richTextBoxFlags[s_callOnContentsResizedSection] = value ? 1 : 0; 335get => _richTextBoxFlags[s_autoUrlDetectSection] != 0; 340_richTextBoxFlags[s_autoUrlDetectSection] = value ? 1 : 0; 361get => _richTextBoxFlags[s_enableAutoDragDropSection] != 0; 364_richTextBoxFlags[s_enableAutoDragDropSection] = value ? 1 : 0; 451get => _richTextBoxFlags[s_fInCtorSection] != 0; 452set => _richTextBoxFlags[s_fInCtorSection] = value ? 1 : 0; 482get => _richTextBoxFlags[s_linkcursorSection] != 0; 483set => _richTextBoxFlags[s_linkcursorSection] = value ? 1 : 0; 502get => _richTextBoxFlags[s_protectedErrorSection] != 0; 503set => _richTextBoxFlags[s_protectedErrorSection] = value ? 1 : 0; 542get => _richTextBoxFlags[s_richTextShortcutsEnabledSection] != 0; 547_richTextBoxFlags[s_richTextShortcutsEnabledSection] = value ? 1 : 0; 638get => (RichTextBoxScrollBars)_richTextBoxFlags[s_scrollBarsSection]; 647_richTextBoxFlags[s_scrollBarsSection] = (int)value; 1285get { return _richTextBoxFlags[s_showSelBarSection] != 0; } 1290_richTextBoxFlags[s_showSelBarSection] = value ? 1 : 0; 1368get { return _richTextBoxFlags[s_suppressTextChangedEventSection] != 0; } 1374_richTextBoxFlags[s_suppressTextChangedEventSection] = value ? 1 : 0;