Class PlaceholderValueNeededEventArgs
- Namespace
- Tlumach
- Assembly
- Tlumach.dll
Contains the arguments of the ParameterValueNEeded event.
public class PlaceholderValueNeededEventArgs : EventArgs
- Inheritance
-
PlaceholderValueNeededEventArgs
- Inherited Members
Constructors
PlaceholderValueNeededEventArgs(string, int)
public PlaceholderValueNeededEventArgs(string name, int index)
Parameters
Properties
CacheValue
Gets or sets the indicator telling the unit that the value should be cached until further notification.
public bool CacheValue { get; set; }
Property Value
Index
Gets the index of the placeholder whose value is requested. May be -1.
public int Index { get; }
Property Value
Name
Gets the name of the placeholder whose value is requested.
public string Name { get; }
Property Value
Value
Gets or sets the value for the placeholder.
public object? Value { get; set; }