Read-Write
Name As String
Sets or returns the name of the category.
The following example that traverses the query categories collection and prints the name of each category.
Dim prj As Project
Dim i As Integer
For i = 0 To prj.QueryCategories.Count - 1
debug.Print prj.QueryCategories(i).NameĀ
Next i