To open any link in a new tab, preserving your position in the current article, just hold down the <CTRL> key on your keyboard before clicking the link or click using your mouse wheel.
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 16 Current »

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.com.


   

            Figure 1


            Figure 2



              Figure 3

API Calls

Delphi

Using IItem Object Model
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

Using PlanSwift Object Model
//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#

Using IItem Object Model
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())
}
Using PlanSwift Object Model
private void Main()
{
	PlanSwift planswift = new PlanSwift();
	IPropertyObject property = planswift.GetProperty(@"\Settings","Show Under The Hood Screen")
	console.WriteLn(property.ResultAsBoolean)
}

VB/VBA (OLE)

Using IItem Object Model
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
Using PlanSwift Object Model
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)

Item Object Model
begin
    settings := getItem('\Settings');
    ShowMessage(GetResultAsBoolean(settings,'Show Under The Hood Screen'));
end
Root Object Model
begin
   ShowMessage(GetResultAsBoolean('\Settings','Show Under The Hood Screen'));
end

Pascal Scripting

Item Object Model
begin
    settings := PlanSwift.getItem('\Settings');
    property := settings.GetProperty('Show Under The Hood Screen');
    ShowMessage(property.ResultAsBoolean);
end
Using the PlanSwift Object Model
begin
    property := PlanSwift.GetProperty('\Settings','Show Under The Hood Screen');
    ShowMessage(property.ResultAsBoolean);
end


  • No labels