Hide

SftButton/OCX 3.0 - Button Control

Display
Print

HoverOn Event, SftButton Object

The mouse cursor is moved into the control.

Syntax

VB.NETPrivate Sub object_HoverOn(ByVal sender As Object, ByVal e As EventArgumentType) Handles object.HoverOn
VBPrivate Sub object_HoverOn()
C#.NETvoid object_HoverOn(object sender, EventArgumentType e);
VC++void OnHoverOnobject();
CHRESULT OnHoverOnobject();

object

A SftButton object.

Comments

The HoverOn event occurs when the mouse cursor is moved into the control.

The HoverStyle property defines how images respond to mouse cursor positions.

The HoverOff event occurs when the mouse cursor is moved outside the control.

Examples

VB.NET

End Sub

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    ' Update the button bitmap every so often to get the
    ' spinning globe effect
    SetImage()
End Sub

Private Sub AxSftButton1_HoverOn(ByVal sender As Object, ByVal e As System.EventArgs) Handles AxSftButton1.HoverOn
    ' The cursor is over the button, change the font
    ' and button text
    AxSftButton1.Font = New Font(AxSftButton1.Font, FontStyle.Underline)
    AxSftButton1.Text = "Click Me, Please"
End Sub

Private Sub AxSftButton1_HoverOff(ByVal sender As Object, ByVal e As System.EventArgs) Handles AxSftButton1.HoverOff

VB6

Option Explicit

Dim LastPicture As Integer

Private Sub CloseButton_Click()
    End
End Sub

Private Sub SftButton1_HoverOn()
    ' The cursor is over the button, change the font
    ' and button text
    SftButton1.Font.Underline = True
    SftButton1.Text = "Click Me, Please"
End Sub

Private Sub SftButton1_HoverOff()

C#

private void button1_Click(object sender, System.EventArgs e)
{
    Application.Exit();
}

private void axSftButton1_HoverOn(object sender, System.EventArgs e)
{
    // The cursor is over the button, change the font
    // and button text
    axSftButton1.Font = new Font(axSftButton1.Font, FontStyle.Underline);
    axSftButton1.Text = "Click Me, Please";
}

private void axSftButton1_HoverOff(object sender, System.EventArgs e)
{
    // The cursor has left the button, change the font

C++

    else if (nIDEvent == IDC_SFTBTN3)
        ChangeBorder();
    else if (nIDEvent == IDC_SFTBTN4)
        ToggleButton();

    CDialog::OnTimer(nIDEvent);
}

void CSpecialDlg::OnHoverOnSftbtn1()
{
    // The cursor is over the button, change the font
    // and button text
    IFontPtr pFont = m_vButton1->GetFont();
    pFont->put_Underline(TRUE);
    m_vButton1->Text = _bstr_t("Click Me, Please");

See Also SftButton Object | Object Hierarchy


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