Class UpDownParsingEventArgs<T>
Provides data for the UpDownBase.Parsing event.
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Controls
Assembly: OpenSilver.dll
Syntax
public class UpDownParsingEventArgs<T> : RoutedEventArgs
Type Parameters
Name | Description |
---|---|
T | Type of Value property. |
Constructors
| Improve this Doc View SourceUpDownParsingEventArgs(String)
Initializes a new instance of the UpDownParsingEventArgs<T> class.
Declaration
public UpDownParsingEventArgs(string text)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | The text that will be parsed. |
Properties
| Improve this Doc View SourceHandled
Gets or sets a value indicating whether this UpDownParsingEventArgs<T> is handled.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Text
Gets the original string value that will be parsed.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String |
Value
Gets or sets the value to be used.
Declaration
public T Value { get; set; }
Property Value
Type | Description |
---|---|
T | The parsed value. |