Skip to content

Latest commit

 

History

History
67 lines (39 loc) · 1.3 KB

PowerPoint.SlideShowView.PointerType.md

File metadata and controls

67 lines (39 loc) · 1.3 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
SlideShowView.PointerType property (PowerPoint)
vbapp10.chm513005
vbapp10.chm513005
PowerPoint.SlideShowView.PointerType
58f40da1-ae25-4604-86bc-6fb884b8fd16
06/08/2017
medium

SlideShowView.PointerType property (PowerPoint)

Returns or sets the type of pointer used in the slide show. Read/write.

Syntax

expression. PointerType

expression A variable that represents a SlideShowView object.

Return value

PpSlideShowPointerType

Remarks

The value of the PointerType property can be one of these PpSlideShowPointerType constants.

ppSlideShowPointerAlwaysHidden
ppSlideShowPointerArrow
ppSlideShowPointerAutoArrow
ppSlideShowPointerNone
ppSlideShowPointerPen

Example

This example runs a slide show of the active presentation, changes the pointer to a pen, and sets the pen color for this slide show to red.

Set currView = ActivePresentation.SlideShowSettings.Run.View

With currView

    .PointerColor.RGB = RGB(255, 0, 0)

    .PointerType = ppSlideShowPointerPen

End With

See also

SlideShowView Object

[!includeSupport and feedback]