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

AppointmentStatusCollection.Add(Color, String) Method

Creates a new status with the specified settings and adds it to the collection of appointment statuses.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.1.dll

Declaration

public int Add(
    Color color,
    string displayName
)

Parameters

Name Type Description
color Color

A Color structure used to create a SolidBrush object for painting a status strip. The newly created brush is accessible with the AppointmentStatus.Brush property.

displayName String

A string that is the name of the status used in editors. This string is also assigned to the UserInterfaceObject.MenuCaption property and used in menus.

Returns

Type Description
Int32

An integer that is the position of status in the collection.

Remarks

This method creates a status with an identifier provided automatically by the AppointmentStatusCollection object. The type of the added status is set to AppointmentStatusType.Custom.

See Also