property Slider.Appearance as AppearanceEnum
Retrieves or sets the control's appearance.

TypeDescription
AppearanceEnum An AppearanceEnum expression that indicates the control's appearance, or a color expression whose last 7 bits in the high significant byte of the value indicates the index of the skin in the Appearance collection, being displayed as control's borders. For instance, if the Appearance = 0x1000000, indicates that the first skin object in the Appearance collection defines the control's border.  The Client object in the skin, defines the client area of the control. The thumb and the ticks are always shown in the control's client area. The skin may contain transparent objects, and so you can define round corners. The frame.ebn file contains such of objects. Use the eXButton's Skin builder to view or change this file
By default, the control displays no border. Use the VisualAppearance property to add new skins to the control. Use the Background property to change the visual appearance for a specific part of the control.

The following VB sample changes the visual aspect of the borders of the control ( please check the above picture for round corners ):

With Slider1
    .BeginUpdate
        .VisualAppearance.Add &H16, "c:\temp\frame.ebn"
        .Appearance = &H16000000
        .BackColor = RGB(250, 250, 250)
    .EndUpdate
End With

The following VB.NET sample changes the visual aspect of the borders of the control:

With AxSlider1
    .BeginUpdate()
    .VisualAppearance.Add(&H16, "c:\temp\frame.ebn")
    .Appearance = &H16000000
    .BackColor = Color.FromArgb(250, 250, 250)
    .EndUpdate()
End With

The following C# sample changes the visual aspect of the borders of the control:

axSlider1.BeginUpdate();
axSlider1.VisualAppearance.Add(0x16, "c:\\temp\\frame.ebn");
axSlider1.Appearance = (EXSLIDERLib.AppearanceEnum)0x16000000;
axSlider1.BackColor = Color.FromArgb(250, 250, 250);
axSlider1.EndUpdate();

The following C++ sample changes the visual aspect of the borders of the control:

m_slider.BeginUpdate();
m_slider.GetVisualAppearance().Add( 0x16, COleVariant( "c:\\temp\\frame.ebn" ) );
m_slider.SetAppearance( 0x16000000 );
m_slider.SetBackColor( RGB(250,250,250) );
m_slider.EndUpdate();

The following VFP sample changes the visual aspect of the borders of the control:

with thisform.Slider1
    .BeginUpdate
        .VisualAppearance.Add(0x16, "c:\temp\frame.ebn")
        .Appearance = 0x16000000
        .BackColor = RGB(250, 250, 250)
    .EndUpdate
endwith