Hide

SftButton/OCX 3.0 - Button Control

Display
Print

BackColorHoverStart Property, SftButton Object

Defines the control's gradient fill background color when the mouse cursor hovers over the control (combined with BackColorHoverEnd).

Syntax

Get

VB.NETClr = object.BackColorHoverStart As System.Drawing.Color
VBClr = object.BackColorHoverStart As OLE_COLOR
C#.NETSystem.Drawing.Color Clr = object.BackColorHoverStart;
VC++OLE_COLOR Clr = object->BackColorHoverStart;
OLE_COLOR Clr = object->GetBackColorHoverStart();
CHRESULT object->get_BackColorHoverStart(OLE_COLOR* Clr);

Put

VB.NETobject.BackColorHoverStart = Clr As System.Drawing.Color
VBobject.BackColorHoverStart = Clr As OLE_COLOR
C#.NETSystem.Drawing.Color object.BackColorHoverStart = Clr;
VC++OLE_COLOR object->BackColorHoverStart = Clr;
void object->PutBackColorHoverStart(OLE_COLOR Clr);
CHRESULT object->put_BackColorHoverStart(OLE_COLOR Clr);

object

A SftButton object.

Clr

Defines the control's gradient fill background color when the mouse cursor hovers over the control (combined with BackColorHoverEnd). For information about color properties, please visit the applicable section "Using SftButton/OCX with ...".

Comments

The BackColorHoverStart property defines the control's gradient fill background color when the mouse cursor hovers over the control (combined with BackColorHoverEnd).

This property has no effect if Windows themes are used.

The FillOrientation defines the gradient fill orientation. The BackColorHoverEnd property is the ending color value (right or bottom).

If both BackColorHoverStart and BackColorHoverEnd define valid starting and ending colors, these take precedence and the BackColorHover property has no effect. On display devices that do not support gradient fills or if fewer than 65K colors are available, the BackColorHover property is used instead.

Examples

VB.NET

    ' Colors
    AxSftButton1.BackColor = SystemColors.Control
    AxSftButton1.BackColorStart = Color.Green
    AxSftButton1.BackColorEnd = Color.Blue
    AxSftButton1.BackColorFocus = SystemColors.Control
    AxSftButton1.BackColorFocusStart = Color.Red
    AxSftButton1.BackColorFocusEnd = Color.Green
    AxSftButton1.BackColorHover = SystemColors.Control
    AxSftButton1.BackColorHoverStart = Color.Yellow
    AxSftButton1.BackColorHoverEnd = Color.Cyan
    AxSftButton1.BackColorPressed = SystemColors.Control
    AxSftButton1.DarkEdgeColor = SystemColors.ControlDark
    AxSftButton1.ForeColor = Color.Black
    AxSftButton1.ForeColorGrayed = Color.Gray
    AxSftButton1.ForeColorDownArrow = Color.Blue
    AxSftButton1.ForeColorPressed = Color.Black

VB6

' Colors
    SftButton1.BackColor = vbButtonFace
    SftButton1.BackColorStart = vbGreen
    SftButton1.BackColorEnd = vbBlue
    SftButton1.BackColorFocus = vbButtonFace
    SftButton1.BackColorFocusStart = vbRed
    SftButton1.BackColorFocusEnd = vbGreen
    SftButton1.BackColorHover = vbButtonFace
    SftButton1.BackColorHoverStart = vbYellow
    SftButton1.BackColorHoverEnd = vbCyan
    SftButton1.BackColorPressed = vbButtonFace
    SftButton1.DarkEdgeColor = vbButtonShadow
    SftButton1.ForeColor = vbBlack
    SftButton1.ForeColorGrayed = vbGray
    SftButton1.ForeColorDownArrow = vbBlue
    SftButton1.ForeColorPressed = vbBlack

C#

    // Colors
    axSftButton1.BackColor = SystemColors.Control;
    axSftButton1.BackColorStart = Color.Green;
    axSftButton1.BackColorEnd = Color.Blue;
    axSftButton1.BackColorFocus = SystemColors.Control;
    axSftButton1.BackColorFocusStart = Color.Red;
    axSftButton1.BackColorFocusEnd = Color.Green;
    axSftButton1.BackColorHover = SystemColors.Control;
    axSftButton1.BackColorHoverStart = Color.Yellow;
    axSftButton1.BackColorHoverEnd = Color.Cyan;
    axSftButton1.BackColorPressed = SystemColors.Control;
    axSftButton1.DarkEdgeColor = SystemColors.ControlDark;
    axSftButton1.ForeColor = Color.Black;
    axSftButton1.ForeColorGrayed = Color.Gray;
    axSftButton1.ForeColorDownArrow = Color.Blue;
    axSftButton1.ForeColorPressed = Color.Black;

C++

// Colors
    m_vButton->put_BackColor(COLOR_BTNFACE|0x80000000L);
    m_vButton->put_BackColorStart(RGB(0,255,0));
    m_vButton->put_BackColorEnd(RGB(0,0,255));
    m_vButton->put_BackColorFocus(COLOR_BTNFACE|0x80000000L);
    m_vButton->put_BackColorFocusStart(RGB(255,0,0));
    m_vButton->put_BackColorFocusEnd(RGB(0,255,0));
    m_vButton->put_BackColorHover(COLOR_BTNFACE|0x80000000L);
    m_vButton->put_BackColorHoverStart(RGB(0,255,255));
    m_vButton->put_BackColorHoverEnd(RGB(255,255,0));
    m_vButton->put_BackColorPressed(COLOR_BTNFACE|0x80000000L);
    m_vButton->put_DarkEdgeColor(COLOR_BTNSHADOW|0x80000000L);
    m_vButton->put_ForeColor(RGB(0,0,0));
    m_vButton->put_ForeColorGrayed(RGB(128,128,128));
    m_vButton->put_ForeColorDownArrow(RGB(0,255,0));
    m_vButton->put_ForeColorPressed(RGB(0,0,0));

See Also SftButton Object | Object Hierarchy


Last Updated 08/13/2020 - (email)
© 2024 Softel vdm, Inc.