ClassParseDateTimeEventArgs
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:
public class ParseDateTimeEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsParseDateTimeEventArgs
Constructors
ParseDateTimeEventArgs(RoutedEvent, string, DateTime, DateTime?, bool)
Initializes a new instance of the ParseDateTimeEventArgs class.
Properties
IsParsingSuccessful
Gets or sets a value that indicates whether the parsing is successful or not.
Declaration
public bool IsParsingSuccessful { get; set; }
Property Value
Remarks
Use this property to change the result of the parsing, if you want to have custom logic for parsing.
PreviousValue
Gets the value before it's being parsed.
Result
Gets or sets the result of the parsing. Default value is null.
Declaration
public DateTime? Result { get; set; }
Property Value
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.
TextToParse
Gets the string that is being parsed.