ActionClickEventHandler 대리자
Action의 Click 이벤트를 처리할 메서드를 나타냅니다.
네임스페이스: Microsoft.Office.Tools.Excel
어셈블리: Microsoft.Office.Tools.Excel(Microsoft.Office.Tools.Excel.dll)
구문
‘선언
Public Delegate Sub ActionClickEventHandler ( _
sender As Object, _
e As ActionEventArgs _
)
public delegate void ActionClickEventHandler(
Object sender,
ActionEventArgs e
)
매개 변수
- sender
형식: System.Object
이벤트 소스입니다.
- e
형식: Microsoft.Office.Tools.Excel.ActionEventArgs
이벤트 데이터가 포함된 ActionEventArgs입니다.
설명
ActionClickEventHandler 대리자를 만드는 경우 이벤트를 처리할 메서드를 결정합니다. 이벤트를 이벤트 처리기와 연결하려면 대리자의 인스턴스를 해당 이벤트에 추가합니다. 대리자를 제거하지 않는 경우 이벤트가 발생할 때마다 이벤트 처리기가 호출됩니다. 대리자에 대한 자세한 내용은 이벤트 및 대리자을 참조하십시오.
예제
다음 코드 예제에서는 Click 이벤트의 처리기를 보여 줍니다. 이 이벤트 처리기는 인식된 스마트 태그 용어 또는 식이 포함된 셀의 주소를 표시합니다. 이 코드 예제는 Action 인터페이스에 대해 제공되는 보다 큰 예제의 일부입니다.
이 예제는 문서 수준 사용자 지정을 위한 것입니다.
Private Sub DisplayAddress_Click(ByVal sender As Object, _
ByVal e As Microsoft.Office.Tools.Excel.ActionEventArgs) _
Handles DisplayAddress.Click
Dim smartTagAddress As String = e.Range.Address( _
ReferenceStyle:=Excel.XlReferenceStyle.xlA1)
MsgBox("The recognized text '" & e.Text & _
"' is at range " & smartTagAddress)
End Sub
void DisplayAddress_Click(object sender,
Microsoft.Office.Tools.Excel.ActionEventArgs e)
{
string smartTagAddress = e.Range.get_Address(missing,
missing, Excel.XlReferenceStyle.xlA1, missing, missing);
System.Windows.Forms.MessageBox.Show("The recognized text '" + e.Text +
"' is at range " + smartTagAddress);
}