Evento ChartSheetBase.SelectEvent
Ocorre quando Microsoft.Office.Tools.Excel.ChartSheetBase está selecionado.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v4.0.Utilities (em Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Sintaxe
'Declaração
Public Event SelectEvent As ChartEvents_SelectEventHandler
public event ChartEvents_SelectEventHandler SelectEvent
Exemplos
O exemplo de código a seguir demonstra um manipulador para o evento de SelectEvent que exibe uma caixa de mensagem quando o eixo primária de Microsoft.Office.Tools.Excel.ChartSheetBase atual é selecionado.
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.");
}
}
}
Segurança do .NET Framework
- 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ódigo parcialmente confiáveis.