Versions Compared

Key

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

...

Boolean value that toggles the Type Tab in the Templates screen to show or hide. Checked (true) displays the Types Tab (Figure 1); unchecked (false) does not display it. Figure 2 shows the Types tab.

API Call:

...


        Figure 1


         Figure 2

API Calls

Table of Contents
minLevel3

Delphi

Code Block
languagedelphi
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
procedure main; 
var
 planswift: IPlanSwift;
 settings: IItem;
 property: IPropertyObject 
begin
 planswift := coPlanSwift.Create();
 settings := planswift.getItem('\Settings');
 property := planswift.GetProperty('Hide Types Tab');
 WriteLn(property.RResultAsBoolean()) 
end


Code Block
languagedelphi
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
//or procedure main; 
var
 planswift: IPlanSwift;
 property:IPropertyObject;
begin
 planswift := coPlanSwift.Create();
 property := planswift.GetProperty('\Settings','Hide Types Tab'); 
 WriteLn(property.ResultAsBoolean()) 
end;


C#

Code Block
languagec#
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
private void Main()
{
	PlanSwift planswift = new PlanSwift();
	IItem settings = planswift.GetItem(@"\Settings");
	IPropertyObject property = settings.GetProperty("HideTypesTab");
	console.WriteLn(property.ResultAsBoolean())
}


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


VB/VBA (OLE)

Code Block
languagevb
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
Sub main()
    Dim planswift = CreateObject("PlanSwift9.PlanCenter")
    Dim settings = planswift.GetItem("\Settings")
    Dim property = settings.GetProperty("HideTypesTab")
    Console.WriteLn(property.ResultAsBoolean());
End Sub


Code Block
languagevb
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
Sub Main()
    Dim planswift = CreateObject("PlanSwift9.PlanCenter")
    Dim nameProperty = planswift.GetProperty("\Settings","HideTypesTab")
    Console.WriteLn(property.ResultAsBoolean)
End Sub

Pascal Scripting (OLE)

Code Block
themeRDark
firstline1
titleItem Object Model
linenumberstrue
begin
    settings := getItem('\Settings');
    ShowMessage(GetResultAsBoolean(settings,'HideTypesTab'));
end


Code Block
themeRDark
titleRoot Object Model
linenumberstrue
begin
   ShowMessage(GetResultAsBoolean('\Settings','HideTypesTab'));
end

Pascal Scripting

Code Block
themeRDark
firstline1
titleItem Object Model
linenumberstrue
begin
    settings := PlanSwift.getItem('\Settings');
    property := settings.GetProperty('HideTypesTab');
    ShowMessage(property.ResultAsBoolean);
end


Code Block
themeRDark
titleUsing the PlanSwift Object Model
linenumberstrue
begin
    property := PlanSwift.GetProperty('\Settings','HideTypesTab');
    ShowMessage(property.ResultAsBoolean);
end