Versions Compared

Key

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

...

EnhancedImage

...

Boolean value that controls whether an image is enhanced.  Checked  Checked (true) enhances the image. Unchecked (false) doesn't enhance it.

...


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("'EnhancedImage"');
	console. WriteLn(property.ResultAsBooleanRResultAsBoolean()) }

//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"',"'EnhancedImage"'); 	console.
 WriteLn(property.ResultAsBoolean()) }
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('"EnhancedImage'");
	console.WriteLn(property.RResultAsBooleanResultAsBoolean())
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'",'"EnhancedImage'"); 
	console.WriteLn(property.ResultAsBoolean)
}

VB/VBA (OLE)

...

Code Block
languagevb
themeRDark
firstline1
titleVB \ VBA (OLE)Using IItem Object Model
linenumberstrue
collapsetrue
Sub main()
   	 Dim planswift = CreateObject("PlanSwift9.PlanCenter")
   	 Dim settings = planswift.GetItem("\Settings")
   	 Dim property = settings.GetProperty("EnhancedImage")
   	 Console.WriteLn(property.ResultAsBoolean());
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","EnhancedImage")
	    Console.WriteLn(property.ResultAsBoolean)
End Sub
Code Block
languagedelphi

Pascal Scripting (OLE)

Code Block
themeRDark
firstline1
titlePlanSwift ScriptingItem Object Model
linenumberstruecollapsetrue
begin
    	settings := PlanSwift.getItem('\Settings');
  	property := settings.GetProperty(ShowMessage(GetResultAsBoolean(settings,'EnhancedImage');
	ShowMessage(property.ResultAsBoolean);
end

//or

begin
	property := PlanSwift.GetProperty


Code Block
themeRDark
titleRoot Object Model
linenumberstrue
begin
   ShowMessage(GetResultAsBoolean('\Settings','EnhancedImage');
	ShowMessage(property.ResultAsBoolean);
end
//or

begin
	

Pascal Scripting

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


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