BasicNoUIObjFileTools Property |
Gets or sets the visibility of the file tool buttons on the toolbar.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxpublic bool FileTools { get; set; }
Public Property FileTools As Boolean
Get
Set
public:
virtual property bool FileTools {
bool get () sealed;
void set (bool value) sealed;
}
Property Value
Boolean
The visibility of the file tool buttons on the toolbar.
Implements
IBasicNoUIFileTools
Remarks
The four buttons which are displayed are: Open, New, Save and Print.
The toolbar must first be visible by setting the
ToolbarVisible property
to True.
When FileTools is True, the user can load files directly into the IDE directly
by opening a file.
Modifications to that file are protected against loss.
Any attempt to change the current macro/module, either by setting the FileName
property or Code property can be blocked by the user.
Setting
|
Description
|
---|
True
|
Default. Changing the FileName property causes the
Code property to change.
|
False
|
Changing the FileName property does not cause the Code property to change.
|
See Also