Versions Compared

Key

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

Left


...

Read-only integer value that displays the left position of the Main Window.

...

API

...

Calls

Table of Contents
minLevel3

Delphi

Code Block
languagec#delphi
themeRDark
firstline1
titleC#Using IItem Object Model
linenumberstrue
collapsetrue
private void Main()
{
	PlanSwift planswift = new PlanSwiftprocedure main; 
var
 planswift: IPlanSwift;
 settings: IItem; property:
 IPropertyObject 
begin
 planswift := coPlanSwift.Create();
	IItem settings := planswift.GetItemgetItem(@"'\Settings"');
	IPropertyObject property := settingsplanswift.GetProperty("'Left"');
	console. WriteLn(property.ResultAsInteger()) }

//or

private void Main()
{
	PlanSwift planswift = new PlanSwift();
	IPropertyObject property 
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"',"'Left"');
 	console.WriteLn(property.ResultAsInteger()) }
end;

C#

Code Block
languagedelphic#
themeRDark
firstline1
titleDelphiUsing IItem Object Model
linenumberstrue
collapsetrue
procedure main;
var
	planswift: IPlanSwift;
	settings: IItem;
	property: IPropertyObject
begin
	planswift := coPlanSwift.Createprivate void Main()
{
	PlanSwift planswift = new PlanSwift();
	IItem settings := planswift.getItemGetItem('@"\Settings'");
	IPropertyObject property := planswiftsettings.GetProperty('"Left'");
	console.WriteLn(property.ResultAsInteger())
end

//or
procedure main;
var
	planswift: IPlanSwift;
	property:IPropertyObject;
begin
	planswift := coPlanSwift.Create}


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

VB/VBA (OLE)

...

Code Block
languagevb
themeRDark
firstline1
titleVB \ VBA (OLE)Using IItem Object Model
linenumberstruecollapsetrue
Sub main()
    	Dim planswift = CreateObject("PlanSwift9.PlanCenter")
    	Dim settings = planswift.GetItem("\Settings")
	    Dim property = settings.GetProperty("Left")
    	Console.WriteLn(property.ResultAsInteger());
End Sub


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

Pascal Scripting (OLE)

delphi
Code Block
language
themeRDark
firstline1
titlePlanSwift ScriptingItem Object Model
linenumberstruecollapsetrue
begin
 	   settings := PlanSwift.getItem('\Settings');
	property   := settings.GetProperty(ShowMessage(GetResultAsInteger(settings,'Left');
	ShowMessage(property.ResultAsInteger);
end


Code Block
themeRDark
titleRoot Object Model
linenumberstrue
begin
 //or

begin
	property := PlanSwift.GetProperty  ShowMessage(GetResultAsInteger('\Settings','Left');
	ShowMessage(property.ResultAsInteger);
end
//or

begin
	

Pascal Scripting

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


Code Block
themeRDark
titleUsing the PlanSwift Object Model
linenumberstrue
begin
 //or  begin property   ShowMessage(GetResultAsInteger(:= PlanSwift.GetProperty('\Settings','Left');
    ShowMessage(property.ResultAsInteger);
end