baseTypes Property
Returns an ISchemaItemCollection
object that contains the base types of the type
object being queried. The base types are in a schema item collection and are accessed by the ISchemaType
interface.
[Script]
Implementation Syntax
var oBaseTypes = oISchemaType.baseTypes;
Parameters
None.
Return Values
- oBaseTypes
- An object. The collection of base types of the type.
[Visual Basic]
Implementation Syntax
Set oBaseTypes = oISchemaType.baseTypes
Parameters
None.
Return Values
- oBaseTypes
- An object. The collection of base types of the type.
[C/C++]
Implementation Syntax
HRESULT get_baseTypes(ISchemaItemCollection** baseTypes);
Parameters
- baseTypes [out,retval]
- An object. The collection of base types of the type.
Return Values
- S_OK
- The value returned if successful.
- E_POINTER
- The value returned if the
baseTypes
object returned is NULL. - E_FAIL
- The value returned if something else is wrong.
To view reference information for Visual Basic or C/C++ only, click the Language Filter button in the upper-left corner of the page.
See Also
Primitive and Derived Data Types
Applies to: ISchemaType Interface