Share via


Axis.AxisBetweenCategories Property

True if the value axis crosses the category axis between categories. Read/write Boolean.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
Property AxisBetweenCategories As Boolean
    Get
    Set
'Usage
Dim instance As Axis
Dim value As Boolean

value = instance.AxisBetweenCategories

instance.AxisBetweenCategories = value
bool AxisBetweenCategories { get; set; }

Property Value

Type: System.Boolean

Remarks

This property applies only to category axes, and it doesn't apply to 3-D charts.

Examples

This example causes the value axis for the first chart in the active document to cross the category axis between categories.

With ActivePresentation.Slides(1).Shapes(1)

    If .HasChart Then

        .Chart.Axes(xlCategory). _

            AxisBetweenCategories= True

    End If

End With

See Also

Reference

Axis Interface

Axis Members

Microsoft.Office.Interop.PowerPoint Namespace