55 references to textBoxFlags
System.Windows.Forms (55)
winforms\Managed\System\WinForms\TextBoxBase.cs (55)
119textBoxFlags[autoSize | hideSelection | wordWrap | shortcutsEnabled] = true; 120SetStyle(ControlStyles.FixedHeight, textBoxFlags[autoSize]); 150return textBoxFlags[acceptsTab]; 153if (textBoxFlags[acceptsTab] != value) { 154textBoxFlags[acceptsTab] = value; 190return textBoxFlags[shortcutsEnabled]; 199textBoxFlags[shortcutsEnabled] = value; 225if (textBoxFlags[readOnly]) { 259return textBoxFlags[autoSize]; 266if (textBoxFlags[autoSize] != value) { 267textBoxFlags[autoSize] = value; 493if (!textBoxFlags[hideSelection]) cp.Style |= NativeMethods.ES_NOHIDESEL; 494if (textBoxFlags[readOnly]) cp.Style |= NativeMethods.ES_READONLY; 506if (textBoxFlags[multiline]) { 508if (textBoxFlags[wordWrap]) cp.Style &= ~NativeMethods.ES_AUTOHSCROLL; 615return textBoxFlags[hideSelection]; 619if (textBoxFlags[hideSelection] != value) { 620textBoxFlags[hideSelection] = value; 784if (textBoxFlags[modified] != curState) { 786textBoxFlags[modified] = curState; 792return textBoxFlags[modified]; 805textBoxFlags[modified] = value; 841return textBoxFlags[multiline]; 844if (textBoxFlags[multiline] != value) { 846textBoxFlags[multiline] = value; 1066return textBoxFlags[readOnly]; 1069if (textBoxFlags[readOnly] != value) { 1070textBoxFlags[readOnly] = value; 1293textBoxFlags[codeUpdateText] = true; 1298textBoxFlags[codeUpdateText] = false; 1315textBoxFlags[codeUpdateText] = true; 1330textBoxFlags[codeUpdateText] = false; 1350return textBoxFlags[wordWrap]; 1354if (textBoxFlags[wordWrap] != value) { 1355textBoxFlags[wordWrap] = value; 1379if (textBoxFlags[autoSize] && !textBoxFlags[multiline]) { 1390if (textBoxFlags[multiline]) { 1480textBoxFlags[creatingHandle] = true; 1491textBoxFlags[creatingHandle] = false; 1525return Multiline && textBoxFlags[acceptsTab] && ((keyData & Keys.Control) == 0); 1559if (textBoxFlags[modified]){ 1562if (textBoxFlags[scrollToCaretOnHandleCreated]) { 1564textBoxFlags[scrollToCaretOnHandleCreated] = false; 1573textBoxFlags[modified] = Modified; 1574textBoxFlags[setSelectionOnHandleCreated] = true; 1899textBoxFlags[scrollToCaretOnHandleCreated] = true; 1965textBoxFlags[setSelectionOnHandleCreated] = true; 1990if (textBoxFlags[autoSize] && !textBoxFlags[multiline]) 2059if (textBoxFlags[setSelectionOnHandleCreated]) { 2060textBoxFlags[setSelectionOnHandleCreated] = false; 2202if (!textBoxFlags[codeUpdateText] && !textBoxFlags[creatingHandle]) { 2220if (!textBoxFlags[multiline]) {