-
Notifications
You must be signed in to change notification settings - Fork 113
Find List object class
Hotride edited this page Dec 8, 2019
·
2 revisions
Command format:
ReturnType NameSpace.name(requiredParameters, [optionalParameters=defaultValue]);
-
ReturnType - the return value of the function (void - the function returns nothing);
-
NameSpace - the scope of the function;
-
name - the name of the function;
-
requiredParameters - required parameters;
-
optionalParameters - optional parameters, the default value is indicated after the = sign
Result: The name of the search list.
- FindListItemObjectList findList.Items();
Result: A list of items to search for, objects of type FindListItemObject.
Change the name of the search list to value.
- void findList.SetItems(findListItemObjectList);
Change the list of items to search for findListItemObjectList.