PropertyType
Returns the Type attribute for the property.
Syntax:
Procedure:Â PropertyType: String;
API Calls
Delphi
PlanSwift Code:
Result := Property.PropertyType;
FreshDesk Code:
procedure psPropertyType;
var
ps: IPlanSwift;
itm: IItem;
i: Integer;
prop: IPropertyObject;
propname,proptype,txt: WideString;
begin
// Create Planswift Interface
ps := coplanswift.Create;
//Get the Selected Item
itm := ps.SelectedItem;
//cycle Thorugh all Properties and get name and type
for i := 0 to itm.propertyCount - 1 do begin
//Get the first property in the array
prop := itm.PropertyItem[i];
//Get the Property Name
propname := prop.name;
//Get the Property Type
proptype := prop.PropertyType;
//Store Text value
txt := txt + propname + ': ' + proptype + #13#10;
end;
//Show message of all properties
showMessage(txt);
//Free the Planswift Interface
ps := nil;
end;
C#
public class PlanswiftApi
{
private PlanSwift Planswift { get; }
public PlanSwiftApi()
{
Planswift = new PlanSwift();
}
}
VB/VBA (OLE)