HasFileManager

Applies to

Window controls

Description

This property is valid for .NET Web Forms applications only when the PBFileManager global property is set to true. The global property allows the File Manager icon to display on all window forms in your Web Forms applications. The File Manager icon gives users access to a file manager on the Web Forms server.

By default, the HasFileManager property is set to true and the PBFileManager is set to false. When you change the PBFileManager global property to true, all window forms display the File Manager icon unless you set the HasFileManager for a particular window to false.

NoteIcon display in MDI Web Forms applications In MDI applications, manager icons display on the frame window. To hide the File Manager icon when the PBFileManager global property is set to true, you must set the HasFileManager property of both the frame and the active sheet to false.

Usage


In scripts

You must surround the HasFileManager property in a conditional compilation code block for Web Forms applications:

#if defined PBWEBFORM then
   w_mywindow.HasFileManager = false
#end if