Reputation: 2574
I was provided an Excel document by a third party with macros and I am supposed to extend their functionality.
As I am reviewing the third party code, I came across some weird data types:
IUtlPropertySet2
CStandardPropertySet2
They are being used like so:
Dim myDataType as IUtlPropertySet2
...
Set myDataType = new CStandardPropertySet2
I have searched all of their files for these data types but could not find them anywhere.
Could someone shed some light on what these data types could be?
Upvotes: 0
Views: 887
Reputation: 2526
Use the VBA Object Browser to find out what they are.
Upvotes: 2