Versions Compared

Key

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

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.

...

Procedure: SimpleList: String;


API

...

Calls

Delphi

Code Block
languagedelphi
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
collapsetrue
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;


Code Block
languagedelphi
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
Coming soon

C#

Code Block
languagec#
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
collapsetrue
public class PlanswiftApi
{
    private PlanSwift Planswift { get; }
    public PlanSwiftApi()
    {
        Planswift = new PlanSwift();
    }
}


Code Block
languagec#
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
Coming soon

VB/VBA (OLE)

Code Block
languagevb
firstline1
titleUsing IItem Object Model
linenumberstrue
Coming soon


Code Block
languagevb
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
Coming soon