Article Details
Id: | 14411 |
Product: | finPOWER Connect |
Type: | NEW |
Version: | 3.00.05 |
Opened: | 17/02/2017 |
Closed: | 14/03/2017 |
Released: | 10/04/2017 |
Job: | J018604 |
Business Layer; new functions added to finInformationListRO
New functions have been added to the finPOWER Business Layer object finInformationListRO. These allow easier access to the List and Alternate List values by returning an ISList object.
The functions are:
- GetList() As ISList
- GetListAlt() As ISList
You might use them in code like this:
finBL.InformationLists.Item("Titles").GetList.Exists("Mr")
It is important to note that these functions do not cache the ISList object returned, therefore each call to the function creates a new ISList object. You should create your own local variable to store the object in if using repeatedly.