Class UpDownParseErrorEventArgs
Provides data for the UpDownBase.ParseError 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 UpDownParseErrorEventArgs : RoutedEventArgs
Constructors
| Improve this Doc View SourceUpDownParseErrorEventArgs(String, Exception)
Initializes a new instance of the UpDownParseErrorEventArgs class.
Declaration
public UpDownParseErrorEventArgs(string text, Exception error)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | The text that caused the parsing error. |
System.Exception | error | The exception thrown by ParseValue method. |
Properties
| Improve this Doc View SourceError
Gets the exception that was raised during the initial parsing attempt.
Declaration
public Exception Error { get; }
Property Value
Type | Description |
---|---|
System.Exception |
Handled
Gets or sets a value indicating whether the event is handled.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Text
Gets the original string value that failed to parse.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String |