Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
72 lines (36 loc) · 1.25 KB

datatable-hasborderhorizontal-property-powerpoint.md

File metadata and controls

72 lines (36 loc) · 1.25 KB
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
DataTable.HasBorderHorizontal Property (PowerPoint)
vbapp10.chm698002
vbapp10.chm698002
powerpoint
PowerPoint.DataTable.HasBorderHorizontal
6fb381e0-f990-656d-89e7-cb2f43a84ece
06/08/2017

DataTable.HasBorderHorizontal Property (PowerPoint)

True if the chart data table has horizontal cell borders. Read/write Boolean.

Syntax

expression. HasBorderHorizontal

expression A variable that represents a DataTable object.

Example

Note Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.

The following example causes the data table for the first chart in the active document to be displayed with an outline border and no cell borders.

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

        With .Chart

            .HasDataTable = True

            With .DataTable

                .HasBorderHorizontal = False

                .HasBorderVertical = False

                .HasBorderOutline = True

            End With

        End With

    End If

End With

See also

Concepts

DataTable Object