SimpleList



Gets or Sets the SimpleList attribute for the property. If ListType = ltSimpleList, the SimpleList attribute will be the CRLF delimited string of list items.



Syntax:

Procedure: SimpleList: String;


API Calls

Delphi

PlanSwift and FreshDesk Code:


If Not Property.ListType = ltSimpleList Then Exit;
AList := TStringList.Create;
Try
  AList.Text := Property.SimpleList;
  AList.Add('List Item 1');
  AList.Add('List Item 2');
  AList.Add('List Item 3');
  Property.SimpleList := AList.Text;
Finally
  AList.Free;
End;


Coming soon

C#

public class PlanswiftApi
{
    private PlanSwift Planswift { get; }
    public PlanSwiftApi()
    {
        Planswift = new PlanSwift();
    }
}


Coming soon

VB/VBA (OLE)

Coming soon


Coming soon