PLUGINDEVTOOLS
...
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
Image RemovedImage Added
Figure 2
API Cals
Delphi
Code Block |
---|
language | delphi |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
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 |
Code Block |
---|
language | delphi |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
//or
procedure main;
var
planswift: IPlanSwift;
property:IPropertyObject;
begin
planswift := coPlanSwift.Create();
property := planswift.GetProperty('\Settings','PLUGINDEVTOOLS');
WriteLn(property.ResultAsBoolean())
end; |
C#
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
private void Main()
{
PlanSwift planswift = new PlanSwift();
IItem settings = planswift.GetItem(@"\Settings");
IPropertyObject property = settings.GetProperty("PLUGINDEVTOOLS");
console.WriteLn(property.ResultAsBoolean())
} |
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
private void Main()
{
PlanSwift planswift = new PlanSwift();
IPropertyObject property = planswift.GetProperty(@"\Settings","PLUGINDEVTOOLS")
console.WriteLn(property.ResultAsBoolean)
} |
VB/VBA (OLE)
Code Block |
---|
language | vb |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
Sub main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim settings = planswift.GetItem("\Settings")
Dim property = settings.GetProperty("PLUGINDEVTOOLS")
Console.WriteLn(property.ResultAsBoolean());
End Sub |
Code Block |
---|
language | vb |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
Sub Main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim nameProperty = planswift.GetProperty("\Settings","PLUGINDEVTOOLS")
Console.WriteLn(property.ResultAsBoolean)
End Sub |
Pascal Scripting (OLE)
Code Block |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Item Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
begin
settings := getItem('\Settings');
ShowMessage(GetResultAsBoolean(settings,'PLUGINDEVTOOLS'));
end |
Code Block |
---|
theme | RDark |
---|
title | Root Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
begin
ShowMessage(GetResultAsBoolean('\Settings','PLUGINDEVTOOLS'));
end |
Pascal Scripting
Code Block |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Item Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
begin
settings := PlanSwift.getItem('\Settings');
property := settings.GetProperty('PLUGINDEVTOOLS');
ShowMessage(property.ResultAsBoolean);
end |
Code Block |
---|
theme | RDark |
---|
title | Using the PlanSwift Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
begin
property := PlanSwift.GetProperty('\Settings','PLUGINDEVTOOLS');
ShowMessage(property.ResultAsBoolean);
end |