Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns or sets the number of the last slide in a range of slides you are publishing as a Web presentation. Read/write.
Syntax
expression. RangeEnd
expression A variable that represents a PublishObject object.
Return value
Integer
Example
This example publishes slides three through five of the active presentation to HTML. It names the published presentation Mallard.htm.
With ActivePresentation.PublishObjects(1)
.FileName = "C:\Test\Mallard.htm"
.SourceType = ppPublishSlideRange
.RangeStart = 3
.RangeEnd = 5
.Publish
End With
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.