Class MyEventArgs
Inheritance
System.Object
MyEventArgs
Assembly: VRage.dll
Syntax
public class MyEventArgs : EventArgs
Constructors
MyEventArgs()
Declaration
MyEventArgs(KeyValuePair<MyStringId, Object>)
Declaration
public MyEventArgs(KeyValuePair<MyStringId, object> arg)
Parameters
| Type |
Name |
Description |
| System.Collections.Generic.KeyValuePair<MyStringId, System.Object> |
arg |
|
MyEventArgs(KeyValuePair<MyStringId, Object>[])
Declaration
public MyEventArgs(KeyValuePair<MyStringId, object>[] args)
Parameters
| Type |
Name |
Description |
| System.Collections.Generic.KeyValuePair<MyStringId, System.Object>[] |
args |
|
Properties
ArgNames
Declaration
public Dictionary<MyStringId, object>.KeyCollection ArgNames { get; }
Property Value
| Type |
Description |
| System.Collections.Generic.Dictionary.KeyCollection<> |
|
Methods
GetArg(MyStringId)
Declaration
public object GetArg(MyStringId argName)
Parameters
Returns
| Type |
Description |
| System.Object |
|
SetArg(MyStringId, Object)
Declaration
public void SetArg(MyStringId argName, object value)
Parameters
| Type |
Name |
Description |
| MyStringId |
argName |
|
| System.Object |
value |
|