Evento WorksheetBase.SelectionChange
Ocorre quando a seleção se altera em uma planilha.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v4.0.Utilities (em Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Sintaxe
'Declaração
Public Event SelectionChange As DocEvents_SelectionChangeEventHandler
public event DocEvents_SelectionChangeEventHandler SelectionChange
Exemplos
O exemplo de código a seguir demonstra um manipulador para o evento de SelectionChange que exibe o nome e endereço de folha de intervalo selecionado na barra de status.
Este exemplo destina-se a uma personalização no nível de documento.
Sub Worksheet1_SelectionChange(ByVal Target As Excel.Range) _
Handles Me.SelectionChange
Me.Application.StatusBar = Me.Name & ":" & _
Target.Address(ReferenceStyle:=Excel.XlReferenceStyle.xlA1)
End Sub
private void WorksheetSelectionChange()
{
this.SelectionChange +=
new Excel.DocEvents_SelectionChangeEventHandler(
Worksheet1_SelectionChange);
}
void Worksheet1_SelectionChange(Excel.Range Target)
{
this.Application.StatusBar = this.Name + ":" +
Target.get_Address(Excel.XlReferenceStyle.xlA1);
}
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiável.