Back to Devexpress

BrushSavingType Enum

windowsforms-devexpress-dot-xtrascheduler-66a93a67.md

latest3.3 KB
Original Source

BrushSavingType Enum

Provides values that specify the type of values stored in the data source field mapped to the StatusMappingInfo.Brush property.

Namespace : DevExpress.XtraScheduler

Assembly : DevExpress.XtraScheduler.v25.2.dll

NuGet Package : DevExpress.Win.Scheduler

Declaration

csharp
public enum BrushSavingType
vb
Public Enum BrushSavingType

Members

NameDescription
Auto

A data field mapped to the StatusMappingInfo.Brush property can store values of any supported type. A correct value type is determined automatically.

| | OleColor |

A data field mapped to the StatusMappingInfo.Brush property must store OLE_Color values.

| | ArgbColor |

A data field mapped to the StatusMappingInfo.Brush property must store 32-bit ARGB values (integer values in the “AARRGGBB” format, e.g. “-65536” for red). You can retrieve integer ARGB values using the Color.ToArgb method.

| | ColorString |

A data field mapped to the StatusMappingInfo.Brush property must store values that specify colors in the hexadecimal format (e.g., “0xFFFF0000” for red).

| | ColorInstance |

A data field mapped to the StatusMappingInfo.Brush property must store System.Drawing.Color type values.

| | ImageBytes |

A data field mapped to the StatusMappingInfo.Brush property must store byte arrays with images.

| | Image |

A data field mapped to the StatusMappingInfo.Brush property must store Image objects.

| | Brush |

A data field mapped to the StatusMappingInfo.Brush property must store Brush values (Brushes, HatchBrushes, LinearGradientBrushes, etc.).

|

The following properties accept/return BrushSavingType values:

Remarks

The BrushSavingType enumeration values are assigned to the AppointmentStatusDataStorage.BrushSaving property. See the Status Mappings article to learn more.

See Also

BrushSaving

Status Mappings

DevExpress.XtraScheduler Namespace