Currently im working with excel vba.
I'm asking myself if there is a possibility to count the variables declared in a user defined Type
as shown below.
Public Type NameOfType
a as string
b as string
End Type
Here the result would be 2.
Thank you
Approach via VBA Extensibility library
Programmatic access to the VBA Project assumed, you can
(reference to 'Microsoft Visual Basic for Applications Extensibility 5.3' needed).
Example Output in VB Editor's immediate window
Calling e.g.
CountTypeVars "NameOfType"
you might get the following results:Caveat
This approach counts each codeline following the
Type
statement as one variable; so further code lines such as line breaks or comments aren't handled.