Share via


PublishObject.SlideShowName Property

PowerPoint Developer Reference

Returns or sets the name of the custom slide show to be published as a Web presentation. Read/write.

Syntax

expression.SlideShowName

expression   A variable that represents a PublishObject object.

Return Value
String

Example

The following example saves the current presentation as an HTML version 4.0 file with the name "mallard.htm." It then displays a message indicating that the current named presentation is being saved in both PowerPoint and HTML formats.

Visual Basic for Applications
  With Pres.PublishObjects(1)
    PresName = .SlideShowName
    .SourceType = ppPublishAll
    .FileName = "C:\HTMLPres\mallard.htm"
    .HTMLVersion = ppHTMLVersion4
    MsgBox ("Saving presentation " & "'" _
        & PresName & "'" & " in PowerPoint" _
        & Chr(10) & Chr(13) _
        & " format and HTML version 4.0 format")
    .Publish
End With

See Also