Contains state information and event data associated with a parse date or time routed event.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Input.dll
Syntax:
C#
public class ParseDateTimeEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsParseDateTimeEventArgs
Constructors
Properties
Gets or sets a value that indicates whether the parsing is successful or not.
C#
public bool IsParsingSuccessful { get; set; }
Remarks:
Use this property to change the result of the parsing, if you want to have custom logic for parsing.
Gets the value before it's being parsed.
C#
public DateTime PreviousValue { get; }
Gets or sets the result of the parsing. Default value is null.
C#
public DateTime? Result { get; set; }
The datetime object currently parsed. The default is null.
Remarks:
Use this property to change the result of the parsing, if you want to have custom logic for parsing.
Gets the string that is being parsed.
C#
public string TextToParse { get; }