27 references to richTextBoxFlags
System.Windows.Forms (27)
winforms\Managed\System\WinForms\RichTextBox.cs (27)
146richTextBoxFlags[autoWordSelectionSection] = 0;// This is false by default 165return richTextBoxFlags[allowOleDropSection] != 0; 178richTextBoxFlags[allowOleDropSection] = value ? 1 : 0; 185return richTextBoxFlags[allowOleObjectsSection] != 0; 188richTextBoxFlags[allowOleObjectsSection] = value ? 1 : 0; 228get { return richTextBoxFlags[autoWordSelectionSection] != 0; } 230richTextBoxFlags[autoWordSelectionSection] = value ? 1 : 0; 322get { return richTextBoxFlags[callOnContentsResizedSection] != 0; } 323set { richTextBoxFlags[callOnContentsResizedSection] = value ? 1 : 0; } 447return richTextBoxFlags[autoUrlDetectSection] != 0; 451richTextBoxFlags[autoUrlDetectSection] = value ? 1 : 0; 481return richTextBoxFlags[enableAutoDragDropSection] != 0; 496richTextBoxFlags[enableAutoDragDropSection] = value ? 1 : 0; 578get { return richTextBoxFlags[fInCtorSection] != 0; } 579set { richTextBoxFlags[fInCtorSection] = value ? 1 : 0; } 617get { return richTextBoxFlags[linkcursorSection] != 0; } 618set { richTextBoxFlags[linkcursorSection] = value ? 1 : 0; } 648get { return richTextBoxFlags[protectedErrorSection] != 0; } 649set { richTextBoxFlags[protectedErrorSection] = value ? 1 : 0; } 683get { return richTextBoxFlags[richTextShortcutsEnabledSection] != 0; } 688richTextBoxFlags[richTextShortcutsEnabledSection] = value ? 1 : 0; 786return (RichTextBoxScrollBars) richTextBoxFlags[scrollBarsSection]; 806richTextBoxFlags[scrollBarsSection] = (int) value; 1418get { return richTextBoxFlags[showSelBarSection] != 0; } 1421richTextBoxFlags[showSelBarSection] = value ? 1 : 0; 1490get { return richTextBoxFlags[suppressTextChangedEventSection] != 0; } 1494richTextBoxFlags[suppressTextChangedEventSection] = value ? 1 : 0;