Versions Compared

Key

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

Boolean value that suppresses or allows the "Do not show this again"  Auto Scale Disclaimer. This is controlled in the Settings/Notification screen (Figure ??1) and can also be turned off on the Auto Scale Disclaimer window (Figure 2). A check in the Settings/Notification screen enables the Auto Scale Disclaimer; a check in the Auto Scale Disclaimer window disables the disclaimer.

...

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

//or

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

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

//or

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


            Figure 1


           Figure 2