Versions Compared

Key

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

...

...

...

...

...


...

Boolean value controlling whether the first page (in the Pages, Bookmarks window from the Home tab) is automatically selected (Figure 1). Checked (true) selects the first page automatically (Figure 2). Unchecked (false) brings up a blank PlanSwift screen (Figure 3).

...


API Call:

...

Table of Contents
minLevel3


Image Added

            Figure 1


Image RemovedImage Added

              Figure 2


Image RemovedImage Added

             Figure 3

Delphi

Code Block
languagedelphi
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
procedure main; 
var
 planswift: IPlanSwift;
 settings: IItem;
 property: IPropertyObject 
begin
 planswift := coPlanSwift.Create();
 settings := planswift.getItem('\Settings');
 property := planswift.GetProperty('AutoSelectFirstPage');
 WriteLn(property.RResultAsBoolean()) 
end


Code Block
languagedelphi
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
//or 
procedure main; 
var
 planswift: IPlanSwift;
 property:IPropertyObject;
begin
 planswift := coPlanSwift.Create();
 property := planswift.GetProperty('\Settings','AutoSelectFirstPage');
 WriteLn(property.ResultAsBoolean()) 
end;

C#

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


Code Block
languagec#
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
private void Main()
{
	PlanSwift planswift = new PlanSwift();
	IPropertyObject property = planswift.GetProperty(@"\Settings","AutoSelectFirstPage")
	console.WriteLn(property.ResultAsBoolean)
}

VB/VBA (OLE)

Code Block
languagevb
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
Sub main()
    Dim planswift = CreateObject("PlanSwift9.PlanCenter")
    Dim settings = planswift.GetItem("\Settings")
    Dim property = settings.GetProperty("AutoSelectFirstPage")
    Console.WriteLn(property.ResultAsBoolean());
End Sub


Code Block
languagevb
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
Sub Main()
    Dim planswift = CreateObject("PlanSwift9.PlanCenter")
    Dim nameProperty = planswift.GetProperty("\Settings","AutoSelectFirstPage")
    Console.WriteLn(property.ResultAsBoolean)
End Sub

Pascal Scripting (OLE)

Code Block
themeRDark
firstline1
titleItem Object Model
linenumberstrue
begin
    settings := getItem('\Settings');
    ShowMessage(GetResultAsBoolean(settings,'AutoSelectFirstPage'));
end


Code Block
themeRDark
titleRoot Object Model
linenumberstrue
begin
   ShowMessage(GetResultAsBoolean('\Settings','AutoSelectFirstPage'));
end

Pascal Scripting

Code Block
themeRDark
firstline1
titleItem Object Model
linenumberstrue
begin
    settings := PlanSwift.getItem('\Settings');
    property := settings.GetProperty('AutoSelectFirstPage');
    ShowMessage(property.ResultAsBoolean);
end


Code Block
themeRDark
titleUsing the PlanSwift Object Model
linenumberstrue
begin
    property := PlanSwift.GetProperty('\Settings','AutoSelectFirstPage');
    ShowMessage(property.ResultAsBoolean);
end