IsWritable Property

Microsoft FrontPage Visual Basic

True if a folder has write permissions. Read-only Boolean.

expression.IsWritable

expression    Required. An expression that returns a WebFolder object.

Example

The following 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