Propriedade ChartSheet.HasDataTable

Obtém ou define um valor que indica se a Microsoft.Office.Tools.Excel.ChartSheet tem uma tabela de dados.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (em Microsoft.Office.Tools.Excel.dll)

Sintaxe

'Declaração
Property HasDataTable As Boolean
    Get
    Set
bool HasDataTable { get; set; }

Valor de propriedade

Tipo: System.Boolean
true Se a Microsoft.Office.Tools.Excel.ChartSheet tem uma tabela de dados.

Exemplos

O seguinte exemplo de código usa a HasDataTable e DataTable Propriedades para exibir uma tabela de dados atual Microsoft.Office.Tools.Excel.ChartSheet com um contorno de borda.

Private Sub DisplayDataTable()
    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
    Me.HasDataTable = True
    Me.DataTable.HasBorderOutline = True
End Sub
private void DisplayDataTable()
{
    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.HasDataTable = true;
    this.DataTable.HasBorderOutline = true;
}

Segurança do .NET Framework

Consulte também

Referência

ChartSheet Interface

Namespace Microsoft.Office.Tools.Excel