Skip to main content
All docs
V19.2

ASPxAgendaViewAppointmentDisplayOptions.StartTimeVisibility Property

Specifies whether the end time is visible for the appointment.

Namespace: DevExpress.Web.ASPxScheduler

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

Declaration

public override AppointmentTimeVisibility StartTimeVisibility { get; set; }

Property Value

Type Description
AppointmentTimeVisibility

An enumeration values.

Available values:

Name Description
Auto

Whether the appointment time is shown or not is determined automatically according to the current scheduler view’s settings.

Always

Appointment time is always shown.

Never

Appointment time is never shown.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to StartTimeVisibility
ASP.NET Controls and MVC Extensions AgendaView
.AppointmentDisplayOptions.StartTimeVisibility
MVCxSchedulerAgendaView
.AppointmentDisplayOptions.StartTimeVisibility
ASP.NET Bootstrap Controls BootstrapAgendaView
.AppointmentDisplayOptions.StartTimeVisibility

Remarks

<dx:ASPxScheduler id="ASPxScheduler1" runat="server" >
    <Views>
      <AgendaView Enabled="true" >
            <AppointmentDisplayOptions StartTimeVisibility="Always" />
      </AgendaView>
    </Views>
    ...
</dx:ASPxScheduler>
See Also