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; 364get => _richTextBoxFlags[s_autoUrlDetectSection] != 0; 369_richTextBoxFlags[s_autoUrlDetectSection] = value ? 1 : 0; 390get => _richTextBoxFlags[s_enableAutoDragDropSection] != 0; 393_richTextBoxFlags[s_enableAutoDragDropSection] = value ? 1 : 0; 486get => _richTextBoxFlags[s_fInCtorSection] != 0; 487set => _richTextBoxFlags[s_fInCtorSection] = value ? 1 : 0; 517get => _richTextBoxFlags[s_linkcursorSection] != 0; 518set => _richTextBoxFlags[s_linkcursorSection] = value ? 1 : 0; 537get => _richTextBoxFlags[s_protectedErrorSection] != 0; 538set => _richTextBoxFlags[s_protectedErrorSection] = value ? 1 : 0; 577get => _richTextBoxFlags[s_richTextShortcutsEnabledSection] != 0; 582_richTextBoxFlags[s_richTextShortcutsEnabledSection] = value ? 1 : 0; 673get => (RichTextBoxScrollBars)_richTextBoxFlags[s_scrollBarsSection]; 682_richTextBoxFlags[s_scrollBarsSection] = (int)value; 1321get { return _richTextBoxFlags[s_showSelBarSection] != 0; } 1326_richTextBoxFlags[s_showSelBarSection] = value ? 1 : 0; 1399get { return _richTextBoxFlags[s_suppressTextChangedEventSection] != 0; } 1405_richTextBoxFlags[s_suppressTextChangedEventSection] = value ? 1 : 0;