ScrollLeftHotKey
...
Integer value returns an ANSI key code (default code 8383, the letter S) for the Scroll Left command. Figure 1 shows where the Scroll Left hotkey is assigned.
API Call:
...
Image RemovedImage Added
Figure 1
API Calls
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('ScrollLeftHotkey');
WriteLn(property.ResultAsInteger())
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','ScrollLeftHotkey');
WriteLn(property.ResultAsInteger())
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("ScrollLeftHotKey");
console.WriteLn(property.ResultAsInteger())
} |
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","ScrollLeftHotKey")
console.WriteLn(property.ResultAsInteger)
} |
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("ScrollLeftHotKey")
Console.WriteLn(property.ResultAsInteger());
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","ScrollLeftHotKey")
Console.WriteLn(property.ResultAsInteger)
End Sub |
Pascal Scripting (OLE)
Code Block |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Item Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
begin
settings := getItem('\Settings');
ShowMessage(GetResultAsInteger(settings,'ScrollLeftHotKey'));
end |
Code Block |
---|
theme | RDark |
---|
title | Root Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
begin
ShowMessage(GetResultAsInteger('\Settings','ScrollLeftHotKey'));
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('ScrollLeftHotKey');
ShowMessage(property.ResultAsInteger);
end |
Code Block |
---|
theme | RDark |
---|
title | Using the PlanSwift Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
begin
property := PlanSwift.GetProperty('\Settings','ScrollLeftHotKey');
ShowMessage(property.ResultAsInteger);
end |