Condividi tramite


Proprietà ChartSheet.ChartTitle

Ottiene un oggetto ChartTitle che rappresenta il titolo dell'oggetto Microsoft.Office.Tools.Excel.ChartSheet specificato.

Spazio dei nomi:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)

Sintassi

'Dichiarazione
ReadOnly Property ChartTitle As ChartTitle
    Get
ChartTitle ChartTitle { get; }

Valore proprietà

Tipo: Microsoft.Office.Interop.Excel.ChartTitle
Oggetto ChartTitle che rappresenta il titolo dell'oggetto Microsoft.Office.Tools.Excel.ChartSheet specificato.

Esempi

Nell'esempio di codice riportato di seguito viene utilizzata la proprietà ChartTitle dell'oggetto Microsoft.Office.Tools.Excel.ChartSheet corrente per modificare il colore del tipo di carattere del titolo.

Private Sub SetTitleColor()
    Globals.Sheet1.Range("A1", "A5").Value2 = 22
    Globals.Sheet1.Range("B1", "B5").Value2 = 55

    Me.ChartWizard(Globals.Sheet1.Range("A1", "B5"), _
        Excel.XlChartType.xl3DColumn, PlotBy:=Excel.XlRowCol.xlColumns, _
        HasLegend:=False, Title:="Revised chart")

    Me.ChartTitle.Font.Color = _
            ColorTranslator.ToOle(Color.Green)
End Sub
private void SetTitleColor()
{
    Globals.Sheet1.Range["A1", "A5"].Value2 = 22;
    Globals.Sheet1.Range["B1", "B5"].Value2 = 55;

    this.ChartWizard(Globals.Sheet1.Range["A1", "B5"],
        Excel.XlChartType.xl3DColumn, missing,
        Excel.XlRowCol.xlColumns, missing, missing, false,
        "Revised chart", missing, missing, missing);

    this.ChartTitle.Font.Color =
        ColorTranslator.ToOle(Color.Green);
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

ChartSheet Interfaccia

Spazio dei nomi Microsoft.Office.Tools.Excel