Evento Workbook.SheetChange (sistema de 2007)
Ocorre quando as células em qualquer planilha são alteradas pelo usuário ou por um vínculo externo.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v9.0 (em Microsoft.Office.Tools.Excel.v9.0.dll)
Sintaxe
Public Event SheetChange As WorkbookEvents_SheetChangeEventHandler
Dim instance As Workbook
Dim handler As WorkbookEvents_SheetChangeEventHandler
AddHandler instance.SheetChange, handler
public event WorkbookEvents_SheetChangeEventHandler SheetChange
Comentários
Esse evento não ocorre em folhas de gráfico.
Exemplos
O exemplo de código a seguir demonstra um manipulador para o SheetChange evento. O manipulador de eventos exibe o nome da planilha e o intervalo de células que foram alteradas.
Este exemplo é para uma personalização em nível de documento.
Sub ThisWorkbook_SheetChange(ByVal Sh As Object, _
ByVal Target As Excel.Range) Handles Me.SheetChange
Dim Sheet1 As Excel.Worksheet = CType(Sh, Excel.Worksheet)
Dim ChangedRange As String = Target.Address( _
ReferenceStyle:=Excel.XlReferenceStyle.xlA1)
MsgBox("The value of " & Sheet1.Name & ":" & ChangedRange & _
" was changed.")
End Sub
private void WorkbookSheetChange()
{
this.SheetChange += new
Excel.WorkbookEvents_SheetChangeEventHandler(
ThisWorkbook_SheetChange);
}
void ThisWorkbook_SheetChange(object Sh, Excel.Range Target)
{
Excel.Worksheet sheet = (Excel.Worksheet)Sh;
string changedRange = Target.get_Address(missing, missing,
Excel.XlReferenceStyle.xlA1, missing, missing);
MessageBox.Show("The value of " + sheet.Name + ":" +
changedRange + " was changed.");
}
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.