i want to use collections in libre office basic , i declare my variable like this
Public g_Sheet_Rows As New Collection
i want to know how can i make use of collection object and various methods with which i can manipulate it
i want to how to perform the following operations:
-
Add a key value pair to a collection
-
Check if a key already exists in collection
-
how to remove a key value pair from a collection
-
Can i directly update value for key if it is already present in collection? if yes how to do it…