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

AppointmentViewInfoOptions.PercentCompleteDisplayType Property

Gets or sets how the task progress is displayed within the appointment body.

Namespace: DevExpress.XtraScheduler.Drawing

Assembly: DevExpress.XtraScheduler.v19.2.Core.dll

Declaration

public PercentCompleteDisplayType PercentCompleteDisplayType { get; set; }

Property Value

Type Description
PercentCompleteDisplayType

A PercentCompleteDisplayType enumeration value that lists possible variants of the task progress display.

Available values:

Name Description
BarProgress

Displays bar shading.

PercentCompleteDisplayType.BarProgress

Number

Displays bar shading and a percent number.

PercentCompleteDisplayType.Number

Both

Displays percentage of completion as bar shading and a percent number.

PercentCompleteDisplayType.Both

None

Does not display percentage of completion.

PercentCompleteDisplayType.None

Property Paths

You can access this nested property as listed below:

Library Object Type Path to PercentCompleteDisplayType
Cross-Platform Class Library IAppointmentViewInfo
.Options.PercentCompleteDisplayType
WinForms Controls AppointmentViewInfo
.Options.PercentCompleteDisplayType
WPF Controls AppointmentViewInfo
.Options.PercentCompleteDisplayType
ASP.NET Controls and MVC Extensions AppointmentViewInfo
.Options.PercentCompleteDisplayType

Remarks

The PercentCompleteDisplayType property specifies how a percentage of completion (the Appointment.PercentComplete property value) is displayed for the current appointment shown in the Gantt View.

To specify this option for all appointments in the view, use the GanttViewAppointmentDisplayOptions.PercentCompleteDisplayType property.

See Also