Versions Compared

Key

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

Boolean value that toggles whether Plugin Developer Tools are displayed on the Plugin ribbon bar (Figure ??). Checked 1). This variable is also set in the Main / Settings / Interface window (Figure 2). Checked is true and shows displays the Plugin Developer Tools; unchecked (the default) is false and does not show them.  DELETE???

API Call:


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

//or

private void Main()
{
	PlanSwift planswift = new PlanSwift();
	IPropertyObject property = planswift.GetProperty(@"\Settings","PLUGINDEVTOOLS")
	console.WriteLn(property.ResultAsBoolean)
}

...

Code Block
languagedelphi
themeRDark
firstline1
titlePlanSwift Scripting
linenumberstrue
collapsetrue
begin
	settings := PlanSwift.getItem('\Settings');
	property := settings.GetProperty('PLUGINDEVTOOLS');
	ShowMessage(property.ResultAsBoolean);
end

//or

begin
	property := PlanSwift.GetProperty('\Settings','PLUGINDEVTOOLS');
	ShowMessage(property.ResultAsBoolean);
end
//or

begin
	settings := getItem('\Settings');
	ShowMessage(GetResultAsBoolean(settings,'PLUGINDEVTOOLS'));
end

//or

begin
   ShowMessage(GetResultAsBoolean('\Settings','PLUGINDEVTOOLS'));
end


Image RemovedImage Added

            Figure ??Image RemovedFigure 1


Image Added

            Figure ?? Figure 2