Back to Devexpress

ASPxSchedulerPrepareFormPopupContainerEventArgs Class

aspnet-devexpress-dot-web-dot-aspxscheduler-7b498fe3.md

latest4.0 KB
Original Source

ASPxSchedulerPrepareFormPopupContainerEventArgs Class

Provides data for the ASPxScheduler.PrepareAppointmentFormPopupContainer, the ASPxScheduler.PrepareAppointmentInplaceEditorPopupContainer, the ASPxScheduler.PrepareGotoDateFormPopupContainer, the ASPxScheduler.PrepareRecurrenceAppointmentDeleteFormPopupContainer, the ASPxScheduler.PrepareRecurrenceAppointmentEditFormPopupContainer, and the ASPxScheduler.PrepareRemindersFormPopupContainer events.

Namespace : DevExpress.Web.ASPxScheduler

Assembly : DevExpress.Web.ASPxScheduler.v25.2.dll

NuGet Package : DevExpress.Web.Scheduler

Declaration

csharp
public class ASPxSchedulerPrepareFormPopupContainerEventArgs :
    EventArgs
vb
Public Class ASPxSchedulerPrepareFormPopupContainerEventArgs
    Inherits EventArgs

ASPxSchedulerPrepareFormPopupContainerEventArgs is the data class for the following events:

Remarks

The following example illustrates how to use the ASPxSchedulerPrepareFormPopupContainerEventArgs class.

csharp
settings.PrepareAppointmentFormPopupContainer += (s, e) => {
    e.Popup.HeaderText = "You can edit the details about a meeting here";
    e.Popup.Width = Unit.Pixel(800);
    e.Popup.BackColor = Color.Wheat;
    e.Popup.ContentStyle.Paddings.Padding = Unit.Pixel(0);
    ...
    e.Popup.PopupHorizontalOffset = -100;
    e.Popup.PopupVerticalOffset = -100;
    e.Popup.PopupHorizontalAlign = DevExpress.Web.PopupHorizontalAlign.WindowCenter;
    e.Popup.PopupVerticalAlign = DevExpress.Web.PopupVerticalAlign.BottomSides;
};

Inheritance

Object EventArgs ASPxSchedulerPrepareFormPopupContainerEventArgs

See Also

ASPxSchedulerPrepareFormPopupContainerEventArgs Members

DevExpress.Web.ASPxScheduler Namespace