Show / Hide Table of Contents

Class UpDownParsingEventArgs<T>

Provides data for the UpDownBase.Parsing event.

Inheritance
System.Object
System.EventArgs
RoutedEventArgs
UpDownParsingEventArgs<T>
Inherited Members
RoutedEventArgs.OriginalSource
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.Controls.Input.Toolkit.dll
Syntax
public class UpDownParsingEventArgs<T> : RoutedEventArgs
Type Parameters
Name Description
T

Type of Value property.

Constructors

| Improve this Doc View Source

UpDownParsingEventArgs(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 Source

Handled

Gets or sets a value indicating whether this UpDownParsingEventArgs<T> is handled.

Declaration
public bool Handled { get; set; }
Property Value
Type Description
System.Boolean

True if handled; otherwise, false.

| Improve this Doc View Source

Text

Gets the original string value that will be parsed.

Declaration
public string Text { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Value

Gets or sets the value to be used.

Declaration
public T Value { get; set; }
Property Value
Type Description
T

The parsed value.

  • Improve this Doc
  • View Source