16 overrides of Value
System.Windows.Forms (13)
System\Windows\Forms\Controls\DataGridView\DataGridView.SelectedCellsAccessibleObject.cs (1)
29public override string Value => Name;
System\Windows\Forms\Controls\DataGridView\DataGridView.TopRowAccessibleObject.cs (1)
94public override string Value => Name;
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.DataGridViewCellAccessibleObject.cs (1)
181public override string? Value
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.DataGridViewRowAccessibleObject.cs (1)
208public override string Value
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.DataGridViewSelectedRowCellsAccessibleObject.cs (1)
33public override string Value => Name;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.DateTimePickerAccessibleObject.cs (1)
46public override string Value
System\Windows\Forms\Controls\Labels\LinkLabel.Link.LinkAccessibleObject.cs (1)
158public override string Value => string.Empty;
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.CheckedListBoxItemAccessibleObject.cs (1)
131public override string Value => IsItemChecked.ToString();
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarAccessibleObject.cs (1)
567public override string? Value
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.GridEntryAccessibleObject.cs (1)
141public override string? Value
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (1)
70public override string? Value => this.TryGetOwnerAs(out TextBoxBase? owner) && !owner.PasswordProtect ? ValueInternal : SR.AccessDenied;
System\Windows\Forms\Controls\TreeView\TreeNode.TreeNodeAccessibleObject.cs (1)
269public override string? Value => _owningTreeNode.Text;
System\Windows\Forms\Controls\UpDown\DomainUpDown.DomainItemAccessibleObject.cs (1)
41public override string? Value => _name;
System.Windows.Forms.Design (3)
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (1)
356public override string? Value => Owner?.Text;
System\Drawing\Design\ColorEditor.ColorPalette.ColorPaletteAccessibleObject.ColorCellAccessibleObject.cs (1)
67public override string Value => _color.ToString();
System\Windows\Forms\Design\ControlDesigner.ControlDesignerAccessibleObject.cs (1)
63public override string? Value => _control.AccessibilityObject.Value;
3 writes to Value
System.Windows.Forms (3)
System\Windows\Forms\Accessibility\AccessibleObject.cs (3)
815Value = newValue; 2489Value = szValue.ToString(); 2503child.Value = szValue.ToString();
14 references to Value
System.Windows.Forms (13)
System\Windows\Forms\Accessibility\AccessibleObject.cs (9)
346/// Determines if <see cref="GetValueInternal"/> can be called without calling <see cref="Value"/> 358/// Determines if <see cref="SetValueInternal(BSTR)"/> can be called without calling <see cref="Value"/> 645UIA_PROPERTY_ID.UIA_ValueValuePropertyId => !string.IsNullOrEmpty(Value) ? (VARIANT)Value : VARIANT.Empty, 1207: new(Value); 1380*pRetVal = Value is null ? default : new(Value); 2413: new(Value); 2423: new(child.Value);
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.DataGridViewRowAccessibleObject.cs (1)
234sb.Append(cellAccObj.Value);
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
1147string? value = AccessibilityObject.Value;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.DateTimePickerAccessibleObject.cs (1)
50string? baseValue = base.Value;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarAccessibleObject.cs (1)
609return base.Value;
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ControlDesigner.ControlDesignerAccessibleObject.cs (1)
63public override string? Value => _control.AccessibilityObject.Value;