PublishObject.SourceType Property

PowerPoint Developer Reference

Returns or sets the source type of the presentation to be published to HTML. Read/write.

Syntax

expression.SourceType

expression   A variable that represents a PublishObject object.

Return Value
PpPublishSourceType

Remarks

The value of the SourceType property can be one of these PpPublishSourceType constants.

ppPublishAll
ppPublishNamedSlideShow
ppPublishSlideRange

Use the ppPublishNamedSlideShow value to publish a custom slide show, specifying the name of the custom slide show by using the SlideShowName property.

Example

This example publishes the specified slide range (slides three through five) of the active presentation to HTML. It names the published presentation Mallard.htm.

Visual Basic for Applications
  With ActivePresentation.PublishObjects(1)
    .FileName = "C:\Test\Mallard.htm"
    .SourceType = ppPublishSlideRange
    .RangeStart = 3
    .RangeEnd = 5
    .Publish
End With

See Also