...
...
Functions - GetPropertyResultAsBoolean
Attempt to return the result of the given property as a boolean value. If the calculated result can not cannot be converted to a boolean value, the default value is returned.
...
Function
: IItem
.
GetPropertyResultAsBoolean(ItemPath, PropertyName:
String
; Default:
Boolean
=
False
):
Boolean
;
API
...
Calls
Delphi
Code Block |
---|
language | delphi |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
var
ps: IPlanSwift;
itm: IItem;
isItem: Boolean;
begin
// Create Planswift Interface
ps := coPlanswift.Create;
// Get the Selected item
itm := ps.SelectedItem;
// Check to see if Item is of the "Item Class"
isItem := itm.GetPropertyResultAsBoolean('IsItem', False);
if isItem then
// ShowMesssage that Item is of Item Class'
ShowMessage('Selectd Item is of the Item Class')
else
// ShowMessage that Item is not of the Item Class;
ShowMessage('Selected Item is not of the Item Class');
// Free the planswift Interface
ps := nil; |
Code Block |
---|
language | delphi |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
|
C#
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
|
|
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
|
VB/VBA (OLE)
Code Block |
---|
language | vb |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
|
|
Code Block |
---|
language | vb |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
|
Pascal Scripting (OLE)
Code Block |
---|
firstline | 1 |
---|
title | Item Object Model |
---|
linenumbers | true |
---|
|
|
Code Block |
---|
title | Root Object Model |
---|
linenumbers | true |
---|
|
|
Pascal Scripting
Code Block |
---|
firstline | 1 |
---|
title | Item Object Model |
---|
linenumbers | true |
---|
|
|
Code Block |
---|
title | Using the PlanSwift Object Model |
---|
linenumbers | true |
---|
|
|