Show Under The Hood Screen
Boolean value controlling whether the U-T-H (Under-The-Hood) Main Menu tab is visible. Figure 1 shows that it is not visible. To make it visible, click on Settings, then on Interface, and then on Show Under The Hood Screen. Figure 2 shows where the password is entered. Figure 3 shows the U-T-H tab after the password is successfully entered. Figure 3 also shows how clicking the U-T-H tab, then the Settings advanced properties, displays the Show Under-The-Hood Screen. When enabled, the value in the Formula field shows as True displaying the tab. If False is entered and the screen closed by clicking on OK, then the U-T-C tab is no longer visible. To obtain the U-T-H password, contact your PlanSwift representative or send an email to takeoff@constructconnect.com..
Figure 1
Figure 2
Figure 3
API Calls
Delphi
procedure main;
var
planswift: IPlanSwift;
settings: IItem;
property: IPropertyObject
begin
planswift := coPlanSwift.Create();
settings := planswift.getItem('\Settings');
property := planswift.GetProperty('Show Under The Hood Screen');
WriteLn(property.RResultAsBoolean())
end
//or
procedure main;
var
planswift: IPlanSwift;
property:IPropertyObject;
begin
planswift := coPlanSwift.Create();
property := planswift.GetProperty('\Settings','Show Under The Hood Screen');
WriteLn(property.ResultAsBoolean())
end;
C#
private void Main()
{
PlanSwift planswift = new PlanSwift();
IItem settings = planswift.GetItem(@"\Settings");
IPropertyObject property = settings.GetProperty("Show Under The Hood Screen");
console.WriteLn(property.ResultAsBoolean())
}
private void Main()
{
PlanSwift planswift = new PlanSwift();
IPropertyObject property = planswift.GetProperty(@"\Settings","Show Under The Hood Screen")
console.WriteLn(property.ResultAsBoolean)
}
VB/VBA (OLE)
Sub main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim settings = planswift.GetItem("\Settings")
Dim property = settings.GetProperty("Show Under The Hood Screen")
Console.WriteLn(property.ResultAsBoolean());
End Sub
Sub Main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim nameProperty = planswift.GetProperty("\Settings","Show Under The Hood Screen")
Console.WriteLn(property.ResultAsBoolean)
End Sub
Pascal Scripting (OLE)
begin
settings := getItem('\Settings');
ShowMessage(GetResultAsBoolean(settings,'Show Under The Hood Screen'));
end
begin
ShowMessage(GetResultAsBoolean('\Settings','Show Under The Hood Screen'));
end
Pascal Scripting
begin
settings := PlanSwift.getItem('\Settings');
property := settings.GetProperty('Show Under The Hood Screen');
ShowMessage(property.ResultAsBoolean);
end
begin
property := PlanSwift.GetProperty('\Settings','Show Under The Hood Screen');
ShowMessage(property.ResultAsBoolean);
end