AllowInsertingRows Property [Excel 2003 VBA Language Reference]

Returns True if the insertion of rows is allowed on a protected worksheet. Read-only Boolean.

expression.AllowInsertingRows

expression Required. An expression that returns a Protection object.

Remarks

The AllowInsertingRows property can be set by using the Protect method arguments.

Example

This example allows the user to insert rows on the protected worksheet and notifies the user.

Sub ProtectionOptions()

    ActiveSheet.Unprotect

    ' Allow rows to be inserted on a protected worksheet.
    If ActiveSheet.Protection.AllowInsertingRows = False Then
        ActiveSheet.Protect AllowInsertingRows:=True
    End If

    MsgBox "Rows can be inserted on this protected worksheet."

End Sub

Applies to | Protection Object