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
예제
다음 코드 예제에서는 기본 마우스 단추를 누른 상태에서 현재 Microsoft.Office.Tools.Excel.ChartSheet 위에서 마우스 포인터가 이동할 때 메시지 상자를 표시하는 MouseMove 이벤트에 대한 처리기를 보여 줍니다.
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 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.