ResourceStorageBase.ColorSaving Property
Gets or sets a type of format to store the color information.
Namespace: DevExpress.XtraScheduler
Assembly: DevExpress.XtraScheduler.v24.1.Core.Desktop.dll
NuGet Package: DevExpress.Scheduler.CoreDesktop
Declaration
Property Value
Type | Description |
---|---|
ColorSavingType | A ColorSavingType enumeration value, indicating the type in which the color is stored. |
Available values:
Name | Description |
---|---|
OleColor | Stores the color setting in OLE_COLOR format. |
ArgbColor | Stores the color setting in ARGB format. |
Color | Stores the color setting as a system defined color Color. |
Remarks
If the color has ARGB format, that is: 8 bit for Alpha-Transparency, 8 bit Red, 8 bit Green, 8 bit Blue, then you should set the ColorSaving value to ColorSavingType.ArgbColor. The FromArgb method is used to create a Color structure from a 32-bit ARGB value.
The color can be specified in OLE_COLOR format, that is one most significant reserved byte, then, depending on the value of this byte, either byte for Blue, byte for Green, byte for Red (if reserved byte is zero) or the system color index, or an offset into a custom pallette. The ColorSavingType.OleColor value means that for the translation of a supplied OLE color value to a GDI+ System.Drawing.Color structure the FromOle method is used.
Note that the ColorSavingType.Color value stores a color as the .NET Color object, which is not a regular data field type and may require a converter.
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the ColorSaving property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.