Contains information about the RadTimeSpanPicker ValueEditing event.
Definition
Namespace:Telerik.Windows.Controls.TimeSpanPicker
Assembly:Telerik.Windows.Controls.Input.dll
Syntax:
public class ValueEditingEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsValueEditingEventArgs
Inherited Members
Constructors
Initializes a new instance of the ValueEditingEventArgs class.
public ValueEditingEventArgs(TimeSpan? newValue, TimeSpan? currentValue, EditSectionType sectionType, char? digitChar, bool isDelete, SpinAction spinAction = SpinAction.None)
The new value.
currentValueTimeSpan?The current value.
sectionTypeEditSectionTypeThe type of the section which is edited.
digitCharchar?The char which is being inserted.
isDeleteboolIndicates if this is a delete operation.
spinActionSpinActionIndicates if this is a spin operation and its type.
Properties
Gets the current TimeSpan value of the control.
public TimeSpan? CurrentValue { get; }
Gets the digit char if the edit is a result of digit key press.
public char? DigitChar { get; }
Gets a value indicating whether the edit is result of a delete operation.
public bool IsDelete { get; }
Gets the edit section type.
public EditSectionType SectionType { get; }
Gets a value indicating if this is a spin operation and its type.
public SpinAction SpinAction { get; }