16 overrides of Value
System.Windows.Forms (13)
System\Windows\Forms\Controls\DataGridView\DataGridView.SelectedCellsAccessibleObject.cs (1)
29
public override string
Value
=> Name;
System\Windows\Forms\Controls\DataGridView\DataGridView.TopRowAccessibleObject.cs (1)
94
public override string
Value
=> Name;
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.DataGridViewCellAccessibleObject.cs (1)
181
public override string?
Value
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.DataGridViewRowAccessibleObject.cs (1)
208
public override string
Value
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.DataGridViewSelectedRowCellsAccessibleObject.cs (1)
33
public override string
Value
=> Name;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.DateTimePickerAccessibleObject.cs (1)
46
public override string
Value
System\Windows\Forms\Controls\Labels\LinkLabel.Link.LinkAccessibleObject.cs (1)
158
public override string
Value
=> string.Empty;
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.CheckedListBoxItemAccessibleObject.cs (1)
131
public override string
Value
=> IsItemChecked.ToString();
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarAccessibleObject.cs (1)
567
public override string?
Value
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.GridEntryAccessibleObject.cs (1)
141
public override string?
Value
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (1)
70
public override string?
Value
=> this.TryGetOwnerAs(out TextBoxBase? owner) && !owner.PasswordProtect ? ValueInternal : SR.AccessDenied;
System\Windows\Forms\Controls\TreeView\TreeNode.TreeNodeAccessibleObject.cs (1)
269
public override string?
Value
=> _owningTreeNode.Text;
System\Windows\Forms\Controls\UpDown\DomainUpDown.DomainItemAccessibleObject.cs (1)
41
public override string?
Value
=> _name;
System.Windows.Forms.Design (3)
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (1)
356
public override string?
Value
=> Owner?.Text;
System\Drawing\Design\ColorEditor.ColorPalette.ColorPaletteAccessibleObject.ColorCellAccessibleObject.cs (1)
67
public override string
Value
=> _color.ToString();
System\Windows\Forms\Design\ControlDesigner.ControlDesignerAccessibleObject.cs (1)
63
public override string?
Value
=> _control.AccessibilityObject.Value;
3 writes to Value
System.Windows.Forms (3)
System\Windows\Forms\Accessibility\AccessibleObject.cs (3)
815
Value
= newValue;
2489
Value
= szValue.ToString();
2503
child.
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
"/>
645
UIA_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)
234
sb.Append(cellAccObj.
Value
);
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
1147
string? value = AccessibilityObject.
Value
;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.DateTimePickerAccessibleObject.cs (1)
50
string? baseValue = base.
Value
;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarAccessibleObject.cs (1)
609
return base.
Value
;
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ControlDesigner.ControlDesignerAccessibleObject.cs (1)
63
public override string? Value => _control.AccessibilityObject.
Value
;