GetInterfaceClasses

Returns the VCCodeClass object associated with an interface.

function GetInterfaceClasses( 
   strInterface, 
   oProject, 
   aryClasses  
);

Parameters

  • strInterface
    The name of the interface containing the class objects.

  • oProject
    The selected project.

  • aryClasses
    [out] An array of class objects in the interface.

Return Value

The VCCodeClass object associated with an interface.

Remarks

Call this function to retrieve the classes associated with an interface.

Example

var aryClasses = new Array();
GetInterfaceClasses(oInterface.Name, selProj, aryClasses);

See Also

Tasks

Creating a Custom Wizard

Concepts

Customizing C++ Wizards with Common JScript Functions

Designing a Wizard

Reference

GetInterfaceType

Other Resources

JScript Functions for C++ Wizards