Share via


Design.Preserved Property

PowerPoint Developer Reference

Represents whether a design master is preserved from changes. Read/write.

Syntax

expression.Preserved

expression   A variable that represents a Design object.

Return Value
MsoTriState

Remarks

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

Constant Description
msoFalse The design master is not preserved and can be edited.
msoTrue The design master is preserved and cannot be edited.

Example

The following line of code locks and preserves the first design master.

Visual Basic for Applications
  Sub PreserveMaster
    ActivePresentation.Designs(1).Preserved = msoTrue
End Sub

See Also