ChartSheet.SelectEvent, événement
Se produit lors de la sélection de Microsoft.Office.Tools.Excel.ChartSheet.
Espace de noms : Microsoft.Office.Tools.Excel
Assemblys : Microsoft.Office.Tools.Excel.v4.0.Utilities (dans Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Microsoft.Office.Tools.Excel (dans Microsoft.Office.Tools.Excel.dll)
Syntaxe
'Déclaration
Event SelectEvent As ChartEvents_SelectEventHandler
event ChartEvents_SelectEventHandler SelectEvent
Exemples
L'exemple de code suivant illustre un gestionnaire de l'événement SelectEvent qui affiche un message lors de la sélection de l'axe principal du Microsoft.Office.Tools.Excel.ChartSheet actuel.
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.");
}
}
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.