HasBorderOutline 屬性

此頁沒有內(nèi)容條目
內(nèi)容

如果圖表數(shù)據(jù)表具有外部邊框,則該值為 True。Boolean 類型,可讀寫。

示例

本示例使圖表數(shù)據(jù)表顯示時(shí)帶有外邊框,但無單元格邊框。

With myChart

    .HasDataTable = True

    With .DataTable

        .HasBorderHorizontal = False

        .HasBorderVertical = False

        .HasBorderOutline = True

    End With

End With