Background fade color of the ToolbarControl.
[Visual Basic .NET] Public Property FadeColor As Integer
[C#] public int FadeColor {get; set;}
[C++]
HRESULT get_FadeColor(
OLE_COLOR* pVal
);
[C++]
HRESULT put_FadeColor(
OLE_COLOR pVal
);
[C++]Parameters
pVal [out, retval]pVal is a parameter of type OLE_COLOR
pVal [in]pVal is a parameter of type OLE_COLOR
Product Availability
Description
Returns or sets the fade color of the ToolbarControl. By default FadeColor is set to the Windows System '3D Objects' color. Internally the OLE_Color is stored as a long integer where the value may be calculated for any RGB combination as follows:
OLE_Color = (Red) + (Green * 256) + (Blue * 256 * 256)
Where Red, Green and Blue are Long Integers within the range 0 - 255.
If the FadeColor is different to the BackColor the ToolbarControl background will be shaded between the BackColor and FadeColor by the FillDirection.
Remarks
The BackColor, FadeColor and FillDirection properties do not affect the visual appearance of the ToolbarControl when Transparent is set to true.
When ThemedDrawing is false the background color of any items on the ToolbarControl is an alpha blend of the BackColor and the Windows System '3D Highlight' color. When ThemedDrawing is true the system controls the background color.
When working directly with AxControls class use the FadeColor property as follows:
axToolbarControl1.FadeColor = System.Drawing.Color.Red;
When using the Controls interop assembly use the FadeColor property as follows:
IToolbarControl2 toolbarControl = (IToolbarControl2) axToolbarControl1.Object; toolbarControl.FadeColor = 255;
When working directly with AxControls class use the FadeColor property as follows:
AxToolbarControl1.FadeColor = System.Drawing.Color.Red
When using the Controls interop assembly use the FadeColor property as follows:
Dim
toolbarControlAs
IToolbarControl2 = AxToolbarControl1.Object toolbarControl.FadeColor = Convert.ToUInt32(255)