[Flags]
enum DeskBandInfoModes : int
{
/// <summary>
/// The band is normal in all respects. The other mode flags modify this flag.
/// </summary>
Normal = 0x0000,
/// <summary>
/// TBD
/// </summary>
Fixed = 0x0001,
/// <summary>
/// a fixed background bitmap (if supported)
/// </summary>
FixedBMP = 0x0004,
/// <summary>
/// The height of the band object can be changed.
/// </summary>
/// <remarks>
/// The ptIntegral member defines the step value by which the band object can be resized.
/// </remarks>
VariableHeight = 0x0008,
/// <summary>
/// TBD
/// </summary>
Undeleteable = 0x0010,
/// <summary>
/// The band object is displayed with a sunken appearance.
/// </summary>
Debossed = 0x0020,
/// <summary>
/// The band will be displayed with the background color specified in crBkgnd.
/// </summary>
BackColor = 0x0040,
/// <summary>
/// Displays a chevron when the toolbar requires overflow.
/// </summary>
UseChevron = 0x0080,
/// <summary>
/// Display the toolbar in a new break
/// </summary>
Break = 0x0100,
/// <summary>
/// Adds the toolbar before the first toolbar in the frame
/// </summary>
AddToFront = 0x0200,
/// <summary>
/// Aligns the toolbar with the top of the frame
/// </summary>
TopAlign = 0x0400
}
Enum DeskBandInfoModes
TODO
End Enum
None.