Class HiLoLines (PowerPoint VBA)

The class HiLoLines represents the high-low lines in a chart group. To use a HiLoLines class variable it first needs to be instantiated, for example


Dim hlls as HiLoLines
Set hlls = ActiveWindow.RangeFromPoint.Chart.ChartGroups(1).HiLoLines

Border

Returns the border of the object.


Dim cbrBorder As ChartBorder
Set cbrBorder = ActiveWindow.RangeFromPoint.Chart.ChartGroups(1).HiLoLines.Border

Delete

Deletes the object.


ActiveWindow.RangeFromPoint.Chart.ChartGroups(1).HiLoLines.Delete

Format

Returns the line, fill, and effect formatting for the object.


Dim cftFormatted As ChartFormat
Set cftFormatted = ActiveWindow.RangeFromPoint.Chart.ChartGroups(1).HiLoLines.Format

Name

Returns the name of the object.


Dim strName As String
strName = ActiveWindow.RangeFromPoint.Chart.ChartGroups(1).HiLoLines.Name

Select

Selects the object.


ActiveWindow.RangeFromPoint.Chart.ChartGroups(1).HiLoLines.Select