DtoCategory Object
This object allows you to perform operations on a particular category from a DtoCategories collection.
Properties
CategoryID | Returns the unique category ID for a DtoCategory. |
Name | Returns the name of the category |
Session | Returns the session of the category |
Collections
Methods
None
Remarks
To get a list of settings for a category, use the Settings property to return a DtoSettings collection. You can then use the DtoSetting objects contained therein to obtain information relating to a particular setting.
Example
Dim my_session as new DtoSession
Dim result as DtoResult
Dim category as DtoCategory
Dim my_categories as DtoCategories
Dim settings as DtoSettings
result = my_session.Connect("myserver", "username", "password")
Set my_categories = my_session.Categories
For Each category In my_categories
Set settings = category.Settings
Next
See Also