8 overrides of Help
System.Windows.Forms (8)
System\Windows\Forms\Accessibility\Control.ControlAccessibleObject.cs (1)
270public override string? Help
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildDropDownButtonUiaProvider.cs (1)
86public override string? Help => GetHelpInternal().ToNullableStringAndFree();
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxItemAccessibleObject.cs (1)
125public override string? Help => GetHelpInternal().ToNullableStringAndFree();
System\Windows\Forms\Controls\ListBoxes\ListBox.ItemAccessibleObject.cs (1)
88public override string? Help => GetHelpInternal().ToNullableStringAndFree();
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.GridEntryAccessibleObject.cs (1)
64public override string? Help => this.TryGetOwnerAs(out GridEntry? owner) ? owner.PropertyDescription : string.Empty;
System\Windows\Forms\Controls\TabControl\TabPage.TabAccessibleObject.cs (1)
110public override string? Help => GetHelpInternal().ToNullableStringAndFree();
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.ToolStripItemAccessibleObject.cs (1)
51public override string? Help
System\Windows\Forms\Controls\TrackBar\TrackBar.TrackBarChildAccessibleObject.cs (1)
35public override string? Help => GetHelpInternal().ToNullableStringAndFree();
7 references to Help
System.Windows.Forms (7)
System\Windows\Forms\Accessibility\AccessibleObject.cs (5)
193/// Determines if <see cref="GetHelpInternal"/> can be called without calling <see cref="Help"/> 636UIA_PROPERTY_ID.UIA_HelpTextPropertyId => (VARIANT)(Help ?? string.Empty), 1256: new(Help); 2084: new(Help); 2094: new(child.Help);
System\Windows\Forms\Accessibility\Control.ControlAccessibleObject.cs (1)
282return base.Help;
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.ToolStripItemAccessibleObject.cs (1)
63return base.Help;