Class AppointmentLoadedEventArgs
The Appointment Loaded Event Arguments contains properties customize the loaded appointment and returns the loaded appointment details.
Inheritance
System.Object
AppointmentLoadedEventArgs
Namespace: Syncfusion.SfSchedule.XForms
Assembly: Syncfusion.SfSchedule.XForms.dll
Syntax
public class AppointmentLoadedEventArgs : EventArgs
Constructors
AppointmentLoadedEventArgs()
Initializes a new instance of the AppointmentLoadedEventArgs class.
Declaration
public AppointmentLoadedEventArgs()
Properties
appointment
Gets or sets returns the appointment object to get the loaded appointment details through the appointment properties.
Declaration
public object appointment { get; set; }
Property Value
Type |
---|
System.Object |
appointmentStyle
Gets or sets appointment style and it's properties to customize the appearance of the loaded appointment.
Declaration
public AppointmentStyle appointmentStyle { get; set; }
Property Value
Type |
---|
AppointmentStyle |
Bounds
Gets or sets returns the loaded appointment bounds value which contains the value of X, Y, Width and Height of the loaded appointment.
Declaration
public Rectangle Bounds { get; set; }
Property Value
Type |
---|
Xamarin.Forms.Rectangle |
view
Gets or sets view, it replaces the loaded appointment's default UI view with the given Custom UI view.
Declaration
public View view { get; set; }
Property Value
Type |
---|
Xamarin.Forms.View |