Versions Compared

Key

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

...

...

...

...

AutoSelectFirstPage

...

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 ContentsminLevel3

...



            Figure 1


              Figure 2


             Figure 3

API Calls

Table of Contents
minLevel3

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

...