IObjectEditor<T>
Interface
Provides the properties and methods allowing transactional edit operations.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Type Parameters:
T
The type of the edited objects.
Syntax:
C#
public interface IObjectEditor<T>
Derived Classes:
Properties
The currently edited object.
C#
T EditedItem { get; }
Methods
Begins a edit operation.
C#
bool BeginEdit(T item)
The object to edit.
Returns:True when the operation succeeded, otherwise false.
Cancels the current edit operation.
Commits the current edit operation.
Gets the item to edit.