Chart.DragPlot 이벤트(2007 시스템)
업데이트: 2007년 11월
셀 범위를 끌어서 Chart 컨트롤에 놓았을 때 발생합니다.
네임스페이스: Microsoft.Office.Tools.Excel
어셈블리: Microsoft.Office.Tools.Excel.v9.0(Microsoft.Office.Tools.Excel.v9.0.dll)
구문
Public Event DragPlot As ChartEvents_DragPlotEventHandler
Dim instance As Chart
Dim handler As ChartEvents_DragPlotEventHandler
AddHandler instance.DragPlot, handler
public event ChartEvents_DragPlotEventHandler DragPlot
예제
다음 코드 예제에서는 셀 범위를 끌어서 차트에 놓았을 때 메시지 상자를 표시하는 DragPlot 이벤트에 대한 처리기가 있는 Chart를 만듭니다.
WithEvents DragPlotChart As Microsoft.Office.Tools.Excel.Chart
Private Sub DisplayDragPlot()
Me.Range("A1", "A5").Value2 = 22
Me.Range("B1", "B5").Value2 = 55
DragPlotChart = Me.Controls.AddChart(Me.Range("D2", "H12"), _
"DragPlotChart")
DragPlotChart.SetSourceData(Me.Range("A1", "B5"), _
Excel.XlRowCol.xlColumns)
DragPlotChart.ChartType = Excel.XlChartType.xl3DColumn
End Sub
Sub DragPlotChart_DragPlot() Handles DragPlotChart.DragPlot
MsgBox("A range was dragged and dropped on the chart.")
End Sub
private void DisplayDragPlot()
{
this.Range["A1", "A5"].Value2 = 22;
this.Range["B1", "B5"].Value2 = 55;
Microsoft.Office.Tools.Excel.Chart chart1 =
this.Controls.AddChart(this.Range["D2", "H12"],
"chart1");
chart1.SetSourceData(this.Range["A1", "B5"],
Excel.XlRowCol.xlColumns);
chart1.ChartType = Excel.XlChartType.xl3DColumn;
chart1.DragPlot +=
new Excel.ChartEvents_DragPlotEventHandler(
chart1_DragPlot);
}
void chart1_DragPlot()
{
MessageBox.Show("A range was dragged and dropped on the chart.");
}
권한
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.