Represents a range of cells in a worksheet that may be edited by the end user.

WorksheetProtectedRange

new WorksheetProtectedRange(title: string): WorksheetProtectedRange

Returns WorksheetProtectedRange

$t: Type
isProtected: boolean
title: string
worksheet: Worksheet

Returns true if the range has a password associated with it.

get hasPassword(): boolean

Returns boolean

Returns a collection of ranges that may be edited when the worksheet is protected.

get ranges(): ICollection$1<WorksheetRegion>

Returns ICollection$1<WorksheetRegion>

Removes the password from the range.

unprotect(): void

Returns void