Boolean value that toggles whether Plugin Developer Tools are displayed on the Plugin ribbon bar (Figure 1). This variable is also set in the Main / Settings / Interface window (Figure 2). Checked is true and displays the Plugin Developer Tools; unchecked (the default) is false and does not show them.
     Figure 1
       Figure 2
procedure main;
var
planswift: IPlanSwift;
settings: IItem;
property: IPropertyObject
begin
planswift := coPlanSwift.Create();
settings := planswift.getItem('\Settings');
property := planswift.GetProperty('PLUGINDEVTOOLS');
WriteLn(property.RResultAsBoolean())
end
//or
procedure main;
var
planswift: IPlanSwift;
property:IPropertyObject;
begin
planswift := coPlanSwift.Create();
property := planswift.GetProperty('\Settings','PLUGINDEVTOOLS');
WriteLn(property.ResultAsBoolean())
end;
private void Main()
{
PlanSwift planswift = new PlanSwift();
IItem settings = planswift.GetItem(@"\Settings");
IPropertyObject property = settings.GetProperty("PLUGINDEVTOOLS");
console.WriteLn(property.ResultAsBoolean())
}
private void Main()
{
PlanSwift planswift = new PlanSwift();
IPropertyObject property = planswift.GetProperty(@"\Settings","PLUGINDEVTOOLS")
console.WriteLn(property.ResultAsBoolean)
}
Sub main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim settings = planswift.GetItem("\Settings")
Dim property = settings.GetProperty("PLUGINDEVTOOLS")
Console.WriteLn(property.ResultAsBoolean());
End Sub
Sub Main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim nameProperty = planswift.GetProperty("\Settings","PLUGINDEVTOOLS")
Console.WriteLn(property.ResultAsBoolean)
End Sub
begin
settings := getItem('\Settings');
ShowMessage(GetResultAsBoolean(settings,'PLUGINDEVTOOLS'));
end
begin
ShowMessage(GetResultAsBoolean('\Settings','PLUGINDEVTOOLS'));
end
begin
settings := PlanSwift.getItem('\Settings');
property := settings.GetProperty('PLUGINDEVTOOLS');
ShowMessage(property.ResultAsBoolean);
end
begin
property := PlanSwift.GetProperty('\Settings','PLUGINDEVTOOLS');
ShowMessage(property.ResultAsBoolean);
end