Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BrushSavingType Enum

Lists data types used for storing the Brush object.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v24.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

#Declaration

public enum BrushSavingType

#Members

Name Description
Auto

The data format for storing a brush is determined automatically based on the type of the mapped field, which is specified using the AppointmentStatusMappings.Brush mapping

OleColor

Stores the brush setting in OLE_COLOR format

ArgbColor

Stores the brush setting in ARGB format.

ColorString

Stores the brush setting as the color ARGB value formatted as a hexadecimal string and prefixed with “0x”. That is, the Colors.Red is stored as “0xFFFF0000”.

ColorInstance

Stores the brush setting as a Color instance.

ImageBytes

Stores the brush setting as a byte array image.

ImageSource

Stores the brush setting as a ImageSource descendant.

Brush

Stores the brush setting as a Brush instance.

#Remarks

The BrushSavingType enumeration is used to specify the AppointmentStatusMappings.BrushSavingType value.

See Also