Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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 devnetwork@planswift takeoff@constructconnect.com..

API Call:

...

Image RemovedImage Added   

            Figure 1


            Figure 2


Image RemovedImage Added

              Figure 3

API Calls

Delphi

Code Block
languagedelphi
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
collapsetrue
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


Code Block
languagedelphi
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
collapsetrue
//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#

Code Block
languagec#
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
collapsetrue
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())
}


Code Block
languagec#
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
collapsetrue
private void Main()
{
	PlanSwift planswift = new PlanSwift();
	IPropertyObject property = planswift.GetProperty(@"\Settings","Show Under The Hood Screen")
	console.WriteLn(property.ResultAsBoolean)
}

VB/VBA (OLE)

Code Block
languagevb
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
collapsetrue
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


Code Block
languagevb
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
collapsetrue
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)

Code Block
themeRDark
firstline1
titleItem Object Model
linenumberstrue
collapsetrue
begin
    settings := getItem('\Settings');
    ShowMessage(GetResultAsBoolean(settings,'Show Under The Hood Screen'));
end


Code Block
themeRDark
titleRoot Object Model
linenumberstrue
collapsetrue
begin
   ShowMessage(GetResultAsBoolean('\Settings','Show Under The Hood Screen'));
end

Pascal Scripting

Code Block
themeRDark
firstline1
titleItem Object Model
linenumberstrue
collapsetrue
begin
    settings := PlanSwift.getItem('\Settings');
    property := settings.GetProperty('Show Under The Hood Screen');
    ShowMessage(property.ResultAsBoolean);
end


Code Block
themeRDark
titleUsing the PlanSwift Object Model
linenumberstrue
collapsetrue
begin
    property := PlanSwift.GetProperty('\Settings','Show Under The Hood Screen');
    ShowMessage(property.ResultAsBoolean);
end