60 references to TextBox
System.Windows.Forms (60)
winforms\Managed\System\WinForms\ToolStripTextBox.cs (60)
148
return this.ownerItem.
TextBox
.AccessibilityObject;
167
Rectangle bounds = CommonProperties.GetSpecifiedBounds(
TextBox
);
168
return new Size(bounds.Width,
TextBox
.PreferredHeight);
269
get { return
TextBox
.AcceptsTab; }
270
set {
TextBox
.AcceptsTab = value; }
280
get { return
TextBox
.AcceptsReturn; }
281
set {
TextBox
.AcceptsReturn = value; }
293
get { return
TextBox
.AutoCompleteCustomSource; }
294
set {
TextBox
.AutoCompleteCustomSource = value; }
304
get { return
TextBox
.AutoCompleteMode; }
305
set {
TextBox
.AutoCompleteMode = value; }
315
get { return
TextBox
.AutoCompleteSource; }
316
set {
TextBox
.AutoCompleteSource = value; }
327
get { return
TextBox
.BorderStyle; }
328
set {
TextBox
.BorderStyle = value; }
339
get { return
TextBox
.CanUndo; }
349
get { return
TextBox
.CharacterCasing; }
350
set {
TextBox
.CharacterCasing = value; }
360
get { return
TextBox
.HideSelection; }
361
set {
TextBox
.HideSelection = value; }
373
get { return
TextBox
.Lines; }
374
set {
TextBox
.Lines = value; }
385
get { return
TextBox
.MaxLength; }
386
set {
TextBox
.MaxLength = value; }
397
get { return
TextBox
.Modified; }
398
set {
TextBox
.Modified = value; }
411
get { return
TextBox
.Multiline; }
412
set {
TextBox
.Multiline = value; }
422
get { return
TextBox
.ReadOnly; }
423
set {
TextBox
.ReadOnly = value; }
433
get { return
TextBox
.SelectedText; }
434
set {
TextBox
.SelectedText = value; }
445
get { return
TextBox
.SelectionLength; }
446
set {
TextBox
.SelectionLength = value; }
456
get { return
TextBox
.SelectionStart; }
457
set {
TextBox
.SelectionStart = value; }
466
get { return
TextBox
.ShortcutsEnabled; }
467
set {
TextBox
.ShortcutsEnabled = value; }
472
get { return
TextBox
.TextLength; }
482
get { return
TextBox
.TextAlign; }
483
set {
TextBox
.TextAlign = value; }
495
get { return
TextBox
.WordWrap; }
496
set {
TextBox
.WordWrap = value; }
587
public void AppendText(string text) {
TextBox
.AppendText(text); }
589
public void Clear(){
TextBox
.Clear(); }
591
public void ClearUndo() {
TextBox
.ClearUndo(); }
593
public void Copy() {
TextBox
.Copy(); }
595
public void Cut() {
TextBox
.Copy(); }
597
public void DeselectAll() {
TextBox
.DeselectAll(); }
599
public char GetCharFromPosition(System.Drawing.Point pt) { return
TextBox
.GetCharFromPosition(pt); }
601
public int GetCharIndexFromPosition(System.Drawing.Point pt) { return
TextBox
.GetCharIndexFromPosition(pt); }
603
public int GetFirstCharIndexFromLine(int lineNumber) { return
TextBox
.GetFirstCharIndexFromLine(lineNumber); }
605
public int GetFirstCharIndexOfCurrentLine() { return
TextBox
.GetFirstCharIndexOfCurrentLine(); }
607
public int GetLineFromCharIndex(int index) { return
TextBox
.GetLineFromCharIndex(index); }
609
public System.Drawing.Point GetPositionFromCharIndex(int index) { return
TextBox
.GetPositionFromCharIndex(index); }
611
public void Paste() {
TextBox
.Paste(); }
613
public void ScrollToCaret() {
TextBox
.ScrollToCaret(); }
615
public void Select(int start, int length) {
TextBox
.Select(start, length); }
617
public void SelectAll() {
TextBox
.SelectAll(); }
619
public void Undo() {
TextBox
.Undo(); }