Question posted 2013 · +7 upvotes
Is there a way to get a list of all valid properties for a given object?
If I wanted to start at cell a1, and go down and assign a1, a2, a3, all of the valid properties for let’s say a worksheet object for example, is that something that can be done? I can’t find any:
list = object.enumproperties
Any ideas?
Accepted answer +9 upvotes
Tools – References – TypeLib Information.
Then:
Sub DumpProperties(ByVal o As Object)
Dim t As TLI.TLIApplication
Set t = New TLI.TLIApplication
Dim ti As TLI.TypeInfo
Set ti = t.InterfaceInfoFromObject(o)
Dim mi As TLI.MemberInfo, i As Long
For Each mi In ti.Members
i = i + 1
ActiveSheet.Cells(i, 1).Value = mi.Name
Next
End Sub
Top excel-vba Q&A (6)
- How to clear the entire array? +58 (2010)
- How to change Format of a Cell to Text using VBA +55 (2011)
- Download attachment from Outlook and Open in Excel +43 (2012)
- Can a VBA function in Excel return a range? +36 (2009)
- 2 Dimensional array from range +34 (2013)
- Hiding an Excel worksheet with VBA +33 (2009)
excel-vba solutions on this site
.