Worksheet.EnableOutlining Property

Excel Developer Reference

True if outlining symbols are enabled when user-interface-only protection is turned on. Read/write Boolean.

Syntax

expression.EnableOutlining

expression   A variable that represents a Worksheet object.

Remarks

This example enables outlining symbols on a protected worksheet.

Example

Visual Basic for Applications
  ActiveSheet.EnableOutlining = True
ActiveSheet.Protect contents:=True, userInterfaceOnly:=True

See Also