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 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
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 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
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 |
Figure ??Figure 1
Figure ?? Figure 2