Skip to main content
A newer version of this page is available. .

ASPxSchedulerPrepareFormPopupContainerEventArgs Class

Namespace: DevExpress.Web.ASPxScheduler

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

Declaration

public class ASPxSchedulerPrepareFormPopupContainerEventArgs :
    EventArgs

Remarks

The following example illustrates how to use the ASPxSchedulerPrepareFormPopupContainerEventArgs class.

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.ASPxClasses.PopupHorizontalAlign.WindowCenter;
    e.Popup.PopupVerticalAlign =  DevExpress.Web.ASPxClasses.PopupVerticalAlign.BottomSides;
};

Inheritance

Object
EventArgs
ASPxSchedulerPrepareFormPopupContainerEventArgs
See Also