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