AllowsLongFilenames Property Example

This example checks the value of the AllowsLongFilenames property of the ActiveWeb object. This example assumes that ConvertLongFilenames is a procedure that is available to this code sample.

If ActiveWeb.AllowsLongFilenames = True Then
    Exit Sub
Else
    Call ConvertLongFilenames()
End If