67 references to TextBox
System.Windows.Forms (59)
System\Windows\Forms\Controls\ToolStrips\ToolStripTextBox.cs (59)
92
Rectangle bounds = CommonProperties.GetSpecifiedBounds(
TextBox
);
93
return new Size(bounds.Width,
TextBox
.PreferredHeight);
167
get { return
TextBox
.AcceptsTab; }
168
set {
TextBox
.AcceptsTab = value; }
176
get { return
TextBox
.AcceptsReturn; }
177
set {
TextBox
.AcceptsReturn = value; }
189
get { return
TextBox
.AutoCompleteCustomSource; }
190
set {
TextBox
.AutoCompleteCustomSource = value; }
199
get { return
TextBox
.AutoCompleteMode; }
200
set {
TextBox
.AutoCompleteMode = value; }
209
get { return
TextBox
.AutoCompleteSource; }
210
set {
TextBox
.AutoCompleteSource = value; }
219
get =>
TextBox
.BorderStyle;
220
set =>
TextBox
.BorderStyle = value;
229
get { return
TextBox
.CanUndo; }
237
get { return
TextBox
.CharacterCasing; }
238
set {
TextBox
.CharacterCasing = value; }
246
get { return
TextBox
.HideSelection; }
247
set {
TextBox
.HideSelection = value; }
258
get { return
TextBox
.Lines; }
259
set {
TextBox
.Lines = value; }
268
get { return
TextBox
.MaxLength; }
269
set {
TextBox
.MaxLength = value; }
278
get { return
TextBox
.Modified; }
279
set {
TextBox
.Modified = value; }
291
get { return
TextBox
.Multiline; }
292
set {
TextBox
.Multiline = value; }
300
get { return
TextBox
.ReadOnly; }
301
set {
TextBox
.ReadOnly = value; }
311
get { return
TextBox
.SelectedText; }
312
set {
TextBox
.SelectedText = value; }
321
get { return
TextBox
.SelectionLength; }
322
set {
TextBox
.SelectionLength = value; }
331
get { return
TextBox
.SelectionStart; }
332
set {
TextBox
.SelectionStart = value; }
340
get { return
TextBox
.ShortcutsEnabled; }
341
set {
TextBox
.ShortcutsEnabled = value; }
347
get { return
TextBox
.TextLength; }
356
get { return
TextBox
.TextAlign; }
357
set {
TextBox
.TextAlign = value; }
368
get { return
TextBox
.WordWrap; }
369
set {
TextBox
.WordWrap = value; }
435
public void AppendText(string? text) {
TextBox
.AppendText(text); }
436
public void Clear() {
TextBox
.Clear(); }
437
public void ClearUndo() {
TextBox
.ClearUndo(); }
438
public void Copy() {
TextBox
.Copy(); }
439
public void Cut() {
TextBox
.Cut(); }
440
public void DeselectAll() {
TextBox
.DeselectAll(); }
441
public char GetCharFromPosition(Point pt) { return
TextBox
.GetCharFromPosition(pt); }
442
public int GetCharIndexFromPosition(Point pt) { return
TextBox
.GetCharIndexFromPosition(pt); }
443
public int GetFirstCharIndexFromLine(int lineNumber) { return
TextBox
.GetFirstCharIndexFromLine(lineNumber); }
444
public int GetFirstCharIndexOfCurrentLine() { return
TextBox
.GetFirstCharIndexOfCurrentLine(); }
445
public int GetLineFromCharIndex(int index) { return
TextBox
.GetLineFromCharIndex(index); }
446
public Point GetPositionFromCharIndex(int index) { return
TextBox
.GetPositionFromCharIndex(index); }
447
public void Paste() {
TextBox
.Paste(); }
448
public void ScrollToCaret() {
TextBox
.ScrollToCaret(); }
449
public void Select(int start, int length) {
TextBox
.Select(start, length); }
450
public void SelectAll() {
TextBox
.SelectAll(); }
451
public void Undo() {
TextBox
.Undo(); }
System.Windows.Forms.Tests (8)
System\Windows\Forms\AccessibleObjects\ToolStripTextBox.ToolStripTextBoxControlAccessibleObjectTests.cs (8)
16
TextBox textBox = toolStripTextBox.
TextBox
;
27
TextBox textBox = toolStripTextBox.
TextBox
;
39
TextBox textBox = toolStripTextBox.
TextBox
;
52
TextBox textBox = toolStripTextBox.
TextBox
;
64
TextBox textBox = toolStripTextBox.
TextBox
;
76
TextBox toolStripTextBoxControl = toolStripTextBox.
TextBox
;
96
TextBox toolStripTextBoxControl = toolStripTextBox.
TextBox
;
131
TextBox toolStripTextBoxControl = toolStripTextBox.
TextBox
;