| Property | Description |
| Count | Long - the number of items in the collection |
| Item(Index) | Object - reference to a specific object in the collection, referenced by Index. If Index is numeric, it is the sequential number of the item in the collection, otherwise it is the alphanumeric key of an item. An error is generated if the item referenced by Index does not exist. | Payslip (Payslip) | Payslip object - crates a refererence to the payslip item's parent payslip object. |
| PeriodCount (Server, Connection, FromDate, ToDate, PayeeId, PayType) | Long - returns a count of the payslips that match the parameters. |
The collection methods provide the means to add and delete objects from the collection, and load a complete collection from the database tables.
| Method | Description |
| Add(Object) | Adds the object to the collection. The key of the object is generated as the object database Id property concatonated with "K" to make it alphanumeric. |
| Clear | Removes all objects from the collection. |
| DrillDown (Server, Connection, TotalBy, Id, FromDate, ToDate) | Loads all items in the database that match the parameters into this collection. TotalBy causes the data to be summed and grouped by either Company, PayGroup or Payee, where the Id is the PayGroup or Payee database record identifier. |
| Load (Server, Connection, PayeeId) | Loads all items in the database into this collection. |
| Remove(Server, Connection, Index) | Deletes the database record for the specified object. An error is generated if an object iis not found for the specified Index |