WorksheetBase.SelectionChange Event

Occurs when the selection changes on a worksheet.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Syntax

'Declaration
Public Event SelectionChange As DocEvents_SelectionChangeEventHandler
public event DocEvents_SelectionChangeEventHandler SelectionChange

Examples

The following code example demonstrates a handler for the SelectionChange event that displays the sheet name and address of the selected range in the status bar.

This example is for a document-level customization.

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);
}

.NET Framework Security

See Also

Reference

WorksheetBase Class

Microsoft.Office.Tools.Excel Namespace