Share via


PublishObject.SpeakerNotes Property

PowerPoint Developer Reference

Determines whether speaker notes are to be published with the presentation. Read/write.

Syntax

expression.SpeakerNotes

expression   A variable that represents a PublishObject object.

Return Value
MsoTriState

Remarks

The value of the SpeakerNotes property can be one of these MsoTriState constants.

Constant Description
msoFalse Speaker notes are not to be published with the presentation.
msoTrue Speaker notes are to be published with the presentation.

Example

This example publishes slides three through five of the active presentation to HTML. It includes the associated speaker's notes with the published presentation and names it Mallard.htm.

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

See Also