ClearAll Method
Applies To
PrintRanges collection object.
Description
Clears all the print ranges from the PrintRanges collection. Use the Add method of the PrintRanges collection to add print ranges to the collection.
Syntax
expression.ClearAll
expression Required. An expression that returns a PrintRanges object.
See Also
Clear method, Delete method, DeleteText method.
Example
This example clears any previously defined print ranges in the active presentation; creates new print ranges that contain slide 1, slides 3 through 5, and slides 8 and 9; prints the newly defined slide ranges; and then clears the new print ranges.
With ActivePresentation.PrintOptions
.RangeType = ppPrintSlideRange
With .Ranges
.ClearAll
.Add 1, 1
.Add 3, 5
.Add 8, 9
.Parent.Parent.PrintOut
.ClearAll
End With
End With