| File: System\Windows\Forms\Accessibility\QueryAccessibilityHelpEventArgs.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Forms; /// <summary> /// The QueryAccessibilityHelpEventArgs is fired when AccessibleObject is providing help /// to accessibility applications. /// </summary> public class QueryAccessibilityHelpEventArgs : EventArgs { public QueryAccessibilityHelpEventArgs() { } public QueryAccessibilityHelpEventArgs(string? helpNamespace, string? helpString, string? helpKeyword) { HelpNamespace = helpNamespace; HelpString = helpString; HelpKeyword = helpKeyword; } public string? HelpNamespace { get; set; } public string? HelpString { get; set; } public string? HelpKeyword { get; set; } }