windowsforms-devexpress-dot-xtrascheduler-dot-schedulerviewbase-a392296d.md
You should use the 'AppointmentHeight' property instead
Gets or sets the height of a single appointment for the current View (in pixels).
Namespace : DevExpress.XtraScheduler
Assembly : DevExpress.XtraScheduler.v25.2.dll
NuGet Package : DevExpress.Win.Scheduler
[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("You should use the 'AppointmentDisplayOptions.AppointmentHeight' property instead", false)]
public int AppointmentHeight { get; set; }
<Obsolete("You should use the 'AppointmentDisplayOptions.AppointmentHeight' property instead", False)>
<Browsable(False)>
<EditorBrowsable(EditorBrowsableState.Never)>
Public Property AppointmentHeight As Integer
| Type | Description |
|---|---|
| Int32 |
An integer value which represents the appointment height measured in pixels.
|
Use the AppointmentHeight property to specify the appointment height. If this property value is 0 , then the default appointment height for this View will be used.
Note
If the SchedulerControl.ActiveView is either Week View or Month View, then the AppointmentHeight property value is applied to all appointments height. But it either the Day View or Work Week View is active, then this height will be applied to all-day appointments only (which Appointment.AllDay properties are set to true ).
See Also