Evento Worksheet.SelectionChange (sistema de 2007)
Ocorre quando a seleção é alterada em uma planilha.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v9.0 (em Microsoft.Office.Tools.Excel.v9.0.dll)
Sintaxe
Public Event SelectionChange As DocEvents_SelectionChangeEventHandler
Dim instance As Worksheet
Dim handler As DocEvents_SelectionChangeEventHandler
AddHandler instance.SelectionChange, handler
public event DocEvents_SelectionChangeEventHandler SelectionChange
Exemplos
O exemplo de código a seguir demonstra um manipulador para o SelectionChange evento que exibe o nome da folha e o endereço do intervalo selecionado na BAR de status.
Este exemplo é para uma personalização em 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(missing, missing,
Excel.XlReferenceStyle.xlA1, missing, missing);
}
Permissões
- 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ódigos parcialmente Confiável.