Evento ChartSheetBase.SelectEvent
Si verifica quando l'oggetto Microsoft.Office.Tools.Excel.ChartSheetBase è selezionato.
Spazio dei nomi: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Sintassi
'Dichiarazione
Public Event SelectEvent As ChartEvents_SelectEventHandler
public event ChartEvents_SelectEventHandler SelectEvent
Esempi
Nell'esempio di codice riportato di seguito viene illustrato un gestore per l'evento SelectEvent che visualizza una finestra di messaggio quando l'asse principale dell'oggetto Microsoft.Office.Tools.Excel.ChartSheetBase corrente viene selezionato.
Private Sub DisplayPrimaryAxisSelections()
Globals.Sheet1.Range("A1", "A5").Value2 = 22
Globals.Sheet1.Range("B1", "B5").Value2 = 55
Me.SetSourceData(Globals.Sheet1.Range("A1", "B5"), _
Excel.XlRowCol.xlColumns)
Me.ChartType = Excel.XlChartType.xl3DColumn
End Sub
Sub ChartSheet1_SelectEvent(ByVal ElementID As Integer, _
ByVal Arg1 As Integer, ByVal Arg2 As Integer) _
Handles Me.SelectEvent
If Excel.XlChartItem.xlAxis = _
CType(ElementID, Excel.XlChartItem) Then
If Excel.XlAxisGroup.xlPrimary = _
CType(Arg1, Excel.XlAxisGroup) Then
MsgBox("The primary axis of the chart " & _
"sheet was selected.")
End If
End If
End Sub
private void DisplayPrimaryAxisSelections()
{
Globals.Sheet1.Range["A1", "A5"].Value2 = 22;
Globals.Sheet1.Range["B1", "B5"].Value2 = 55;
this.SetSourceData(Globals.Sheet1.Range["A1", "B5"],
Excel.XlRowCol.xlColumns);
this.ChartType = Excel.XlChartType.xl3DColumn;
this.SelectEvent +=
new Excel.ChartEvents_SelectEventHandler(
ChartSheet1_SelectEvent);
}
void ChartSheet1_SelectEvent(int ElementID, int Arg1, int Arg2)
{
if (Excel.XlChartItem.xlAxis == (Excel.XlChartItem)ElementID)
{
if (Excel.XlAxisGroup.xlPrimary == (Excel.XlAxisGroup)Arg1)
{
MessageBox.Show("The primary axis of the chart " +
"sheet was selected.");
}
}
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.