Class ScheduleAppointmentEventArgs
Provides data for the ItemChanged event.
Inheritance
System.Object
System.EventArgs
ScheduleAppointmentEventArgs
Inherited Members
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)
Namespace: Syncfusion.Schedule
Assembly: Syncfusion.Schedule.Base.dll
Syntax
public class ScheduleAppointmentEventArgs : EventArgs
Constructors
ScheduleAppointmentEventArgs(IScheduleAppointment, ItemAction)
Initializes a new instance of the ScheduleAppointmentEventArgs class.
Declaration
public ScheduleAppointmentEventArgs(IScheduleAppointment currentItem, ItemAction action)
Parameters
Type | Name | Description |
---|---|---|
IScheduleAppointment | currentItem | Current value of the IScheduleAppointment object. |
ItemAction | action | An ItemAction value that indicates the type of the change. |
Properties
Action
Gets or sets type of action that is being taken such as a Drag or an Edit.
Declaration
public ItemAction Action { get; set; }
Property Value
Type |
---|
ItemAction |
CurrentItem
Gets or sets IScheduleAppointment after the change.
Declaration
public IScheduleAppointment CurrentItem { get; set; }
Property Value
Type |
---|
IScheduleAppointment |
Methods
ToString()
An Overridden method that returns the string representation of ScheduleAppointmentEventArgs object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A string holding the Event Args object. |
Overrides
System.Object.ToString()