ChartSheet.MouseMove 事件

在鼠标指针的位置在 Microsoft.Office.Tools.Excel.ChartSheet 上更改时发生。

命名空间:  Microsoft.Office.Tools.Excel
程序集:  Microsoft.Office.Tools.Excel(在 Microsoft.Office.Tools.Excel.dll 中)

语法

声明
Event MouseMove As ChartEvents_MouseMoveEventHandler
event ChartEvents_MouseMoveEventHandler MouseMove

示例

下面的代码示例演示 MouseMove 事件的一个处理程序,在鼠标指针在当前 Microsoft.Office.Tools.Excel.ChartSheet 上移动的同时按下主鼠标按钮时该处理程序显示一个消息框。

Private Sub DisplayMouseMove()
    Globals.Sheet1.Range("A1", "A5").Value2 = 22
    Globals.Sheet1.Range("B1", "B5").Value2 = 55

    Me.SetSourceData(Globals.Sheet1.Range("A1", "B5"), _
        Excel.XlRowCol.xlColumns)
    Me.ChartType = Excel.XlChartType.xl3DColumn
End Sub

Sub ChartSheet1_MouseMove(ByVal Button As Integer, _
    ByVal Shift As Integer, ByVal x As Integer, _
    ByVal y As Integer) Handles Me.MouseMove

    If Button = CType(Excel.XlMouseButton.xlPrimaryButton, Integer) Then
        MsgBox("The mouse is moving over the chart sheet.")
    End If
End Sub
private void DisplayMouseMove()
{
    Globals.Sheet1.Range["A1", "A5"].Value2 = 22;
    Globals.Sheet1.Range["B1", "B5"].Value2 = 55;

    this.SetSourceData(Globals.Sheet1.Range["A1", "B5"],
        Excel.XlRowCol.xlColumns);
    this.ChartType = Excel.XlChartType.xl3DColumn;

    this.MouseMove +=
        new Excel.ChartEvents_MouseMoveEventHandler(
        ChartSheet1_MouseMove);
}

void ChartSheet1_MouseMove(int Button, int Shift, int x, int y)
{
    if (Button == (int)Excel.XlMouseButton.xlPrimaryButton)
    {
        MessageBox.Show("The mouse is moving over the chart sheet.");
    }
}

.NET Framework 安全性

请参见

参考

ChartSheet 接口

Microsoft.Office.Tools.Excel 命名空间