Type | Description | |||
Part as BackgroundPartEnum | A BackgroundPartEnum expression that indicates a part in the control. | |||
Color | A Color expression that indicates the background color for a specified part. The last 7 bits in the high significant byte of the color to indicates the identifier of the skin being used. Use the Add method to add new skins to the control. If you need to remove the skin appearance from a part of the control you need to reset the last 7 bits in the high significant byte of the color being applied to the background's part. |
The following VB sample changes the visual appearance for the "drop down" filter button. The sample applies the skin "" to the "drop down" filter buttons:
With G2antt1 With .VisualAppearance .Add &H1, App.Path + "\fbardd.ebn" End With .Background(exHeaderFilterBarButton) = &H1000000 End With
The following C++ sample changes the visual appearance for the "drop down" filter button:
#include "Appearance.h" m_g2antt.GetVisualAppearance().Add( 0x01, COleVariant(_T("D:\\Temp\\ExG2antt.Help\\fbardd.ebn")) ); m_g2antt.SetBackground( 0 /*exHeaderFilterBarButton*/, 0x1000000 );
The following VB.NET sample changes the visual appearance for the "drop down" filter button:
With AxG2antt1 With .VisualAppearance .Add(&H1, "D:\Temp\ExG2antt.Help\fbardd.ebn") End With .set_Background(EXG2ANTTLib.BackgroundPartEnum.exHeaderFilterBarButton, &H1000000) End With
The following C# sample changes the visual appearance for the "drop down" filter button:
axG2antt1.VisualAppearance.Add(0x1, "D:\\Temp\\ExG2antt.Help\\fbardd.ebn"); axG2antt1.set_Background(EXG2ANTTLib.BackgroundPartEnum.exHeaderFilterBarButton, 0x1000000);
The following VFP sample changes the visual appearance for the "drop down" filter button:
With thisform.G2antt1 With .VisualAppearance .Add(1, "D:\Temp\ExG2antt.Help\fbardd.ebn") EndWith .Object.Background(0) = 16777216 EndWith
The 16777216 value is the 0x1000000 value in hexadecimal.