Versions Compared

Key

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

HideTypesTab


...

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.

...


Image Added

        Figure 1

...


Image Added

         Figure 2

API Calls

Table of Contents
minLevel3

Delphi

Code Block
languagec#delphi
themeRDark
firstline1
titleC#Using IItem Object Model
linenumberstrue
collapsetrue
private void Main()
{
	PlanSwift planswift = new PlanSwiftprocedure main; 
var
 planswift: IPlanSwift;
 settings: IItem;
 property: IPropertyObject 
begin
 planswift := coPlanSwift.Create();
	IItem settings := planswift.GetItemgetItem(@"'\Settings"');
	IPropertyObject property := settingsplanswift.GetProperty("'Hide Types Tab"');
 	console.WriteLn(property.ResultAsBooleanRResultAsBoolean()) }

//or

private void Main()
{
	PlanSwift planswift = new PlanSwift();
	IPropertyObject property 
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"'); 
 	console.WriteLn(property.ResultAsBoolean()
}) 
end;


C#

Code Block
languagedelphic#
themeRDark
firstline1
titleDelphiUsing IItem Object Model
linenumberstrue
collapsetrue
procedure main;
var
	planswift: IPlanSwift;
	settings: IItem;
	property: IPropertyObject
begin
	planswift := coPlanSwift.Createprivate void Main()
{
	PlanSwift planswift = new PlanSwift();
	IItem settings := planswift.getItemGetItem('@"\Settings'");
	IPropertyObject property := planswiftsettings.GetProperty('Hide Types Tab'"HideTypesTab");
	console.WriteLn(property.RResultAsBooleanResultAsBoolean())
end

//or
procedure main;
var
	planswift: IPlanSwift;
	property:IPropertyObject;
begin
	planswift := coPlanSwift.Create}


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


VB/VBA (OLE)

...

Code Block
languagevb
themeRDark
firstline1
titleVB \ VBA (OLE)Using IItem Object Model
linenumberstruecollapsetrue
Sub main()
   	 Dim planswift = CreateObject("PlanSwift9.PlanCenter")
	    Dim settings = planswift.GetItem("\Settings")
	    Dim property = settings.GetProperty("HideHideTypesTab")
  Types Tab") 	Console.WriteLn(property.ResultAsBoolean());
End Sub


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

Pascal Scripting (OLE)

Code Block
themeRDark
firstline1
titlePlanSwift ScriptingItem Object Model
linenumberstruecollapsetrue
begin
   	 settings := PlanSwift.getItem('\Settings');
	property   := settings.GetProperty('Hide Types Tab');
	ShowMessage(property.ResultAsBoolean);
end

//or

begin
	propertyShowMessage(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.GetPropertygetItem('\Settings','Hide Types Tab);
    property := settings.GetProperty('HideTypesTab');
   	 ShowMessage(property.ResultAsBoolean);
end
//or

begin
	settings


Code Block
themeRDark
titleUsing the PlanSwift Object Model
linenumberstrue
begin
    property := getItemPlanSwift.GetProperty('\Settings');
	ShowMessage(GetResultAsBoolean(settings,'Hide Types TabHideTypesTab'));
end

//or  begin    ShowMessage(GetResultAsBoolean('\Settings','Hide Types Tab')ShowMessage(property.ResultAsBoolean);
end

Image Removed

        Figure 1

Image Removed

...