Versions Compared

Key

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

...

Integer value returns an ANSI key code (default code 66, the letter B)  for the Create Bookmark command. Figure 1 shows where the Create Bookmark hotkey is assigned.

API Call:

Table of Contents
minLevel3

...



                  Figure 1

API Call

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('CreateBookmarkHotkey');
 WriteLn(property.ResultAsInteger()) 
end

...