Compartir a través de


WorkbookBase.ActiveChart (Propiedad)

Obtiene un objeto Microsoft.Office.Interop.Excel.Chart que representa el gráfico activo (un gráfico incrustado o una hoja de gráficos).Un gráfico incrustado se considera activo cuando está seleccionado o activado.Cuando no hay ningún gráfico activo, esta propiedad devuelve nullreferencia null (Nothing en Visual Basic).

Espacio de nombres:  Microsoft.Office.Tools.Excel
Ensamblado:  Microsoft.Office.Tools.Excel.v4.0.Utilities (en Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Sintaxis

'Declaración
Public ReadOnly Property ActiveChart As Chart
public Chart ActiveChart { get; }

Valor de propiedad

Tipo: Microsoft.Office.Interop.Excel.Chart
Objeto Microsoft.Office.Interop.Excel.Chart que representa el gráfico activo; nullreferencia null (Nothing en Visual Basic) si no hay ningún gráfico activo.

Ejemplos

El ejemplo de código siguiente utiliza la propiedad ActiveChart para obtener el gráfico activo del libro actual y, a continuación, convierte en invisible el título del gráfico.

Se trata de un ejemplo para una personalización en el nivel del documento.

Private Sub HideActiveChartTitle()
    If Not (Me.ActiveChart Is Nothing) Then
        Me.ActiveChart.HasTitle = False
    End If
End Sub
private void HideActiveChartTitle()
{
    if (this.ActiveChart != null)
    {
        this.ActiveChart.HasTitle = false;
    }
}

Seguridad de .NET Framework

Vea también

Referencia

WorkbookBase Clase

Microsoft.Office.Tools.Excel (Espacio de nombres)