Classe HiLoLines - as linhas de máximo/mínimo em um grupo de gráficos (PowerPoint VBA)

A classe HiLoLines representa as linhas de máximo/mínimo em um grupo de gráficos.

Para usar uma variável de classe HiLoLines, ela primeiro precisa ser instanciada por exemplo

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

As variáveis ​​de classe HiLoLines podem ser definidas usando o procedimento ChartGroup.HiLoLines.

Border

Retorna a borda do objeto. Somente leitura ChartBorder.

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

Delete

Exclui o objeto.

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

Format

Retorna a linha, preenchimento e efeito da formatação do objeto. Somente leitura ChartFormat.

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

Name

Retorna o nome do objeto. Cadeia de caracteressomente leitura.

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

Select

Seleciona o objeto.

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