IsWritable Property

       

Returns the setting for write permission for a WebFolder object. Read-only Boolean.

Example

This example retrieves the setting of the IsWritable property for a WebFolder object.

Private Sub CheckExecutable()
    Dim myFolder As WebFolder
    Dim myWritableStatus As Boolean

    Set myFolder = ActiveWeb.RootFolder.Folders("images")
    myWritableStatus = myFolder.IsWritable

End Sub