How do I access an enum that is defined within a COM interface? Specifically, I've created a new instance of an iTunes.Application:

var   iTunesApp = WScript.CreateObject("iTunes.Application");

... and I want to be able to use certain enums defined within the COM

iTunesTrackCOM.idl File Reference
[...]
Enumerations
[...]

enum   ITVideoKind { 
   ITVideoKindNone = 0, 
   ITVideoKindMovie, 
   ITVideoKindMusicVideo, 
   ITVideoKindTVShow 
 }

I've tried iTunesApp.ITVideoKindTVShow, but that doesn't seem to work.

Alternatively, how could I root around the iTunesApp object interactively via a shell or something like that?

link|improve this question

62% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can't use the enum by name. You have to just use the constants: 0, 1, 2...

It's really awesome when you're dealing with bit-fields. You have to use the decimal value of the bit-flag, e.g. the flags parameter to IHTMLTxtRange::findText().

link|improve this answer
1  
Or declare your own constants in the scripts, and use them. – Pavel Minaev Oct 31 '09 at 4:14
Yeah, that'd work too. – jeffamaphone Oct 31 '09 at 6:24
Thanks for the answers; this is what I ended up doing. – Peyton Nov 1 '09 at 3:01
feedback

You can use a tool like tlb2const to generate constants from the typelib.

See my answer here: http://stackoverflow.com/questions/1276442/is-it-possible-to-expose-a-c-enum-to-com-interop-callers-and-if-so-how/1276503#1276503

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.