**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Windows.Forms / Gtk / QueryAccessibilityHelpEventArgs.cs
bloba225eb332f99f285b4025e0c92f81515b6a547ef
1 //
2 // System.Windows.Forms.QueryAccessibilityHelpEventArgs.cs
3 //
4 // Author:
5 // stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 // Partially completed by Dennis Hayes (dennish@raytek.com)
7 // Gianandrea Terzi (gterzi@lario.com)
8 //
9 // (C) 2002 Ximian, Inc
12 using System.Runtime.InteropServices;
14 namespace System.Windows.Forms {
16 // <summary>
18 // </summary>
20 public class QueryAccessibilityHelpEventArgs : EventArgs {
22 #region Fields
24 string helpnamespace;
25 string helpstring;
26 string helpkeyword;
28 #endregion
30 // --- Constructor
33 public QueryAccessibilityHelpEventArgs()
35 this.helpkeyword = "";
36 this.helpnamespace = "";
37 this.helpstring = "";
40 public QueryAccessibilityHelpEventArgs(string helpNamespace, string helpString, string helpKeyword) {
41 this.helpkeyword = helpKeyword;
42 this.helpnamespace = helpNamespace;
43 this.helpstring =helpString;
47 #region Public Properties
49 [ComVisible(true)]
50 public string HelpKeyword {
51 get {
52 return helpkeyword;
54 set {
55 helpkeyword = value;
59 [ComVisible(true)]
60 public string HelpNamespace {
61 get {
62 return helpnamespace;
64 set {
65 helpnamespace = value;
69 [ComVisible(true)]
70 public string HelpString {
71 get {
72 return helpstring;
74 set {
75 helpstring = value;
78 #endregion