attributes Property (ISchemaAttributeGroup)
[This feature was only implemented for MSXML 6.0.]
Returns a collection of attributes that are declared in the attribute group declaration. Use the ISchemaAttribute
interface to get information from individual attributes in the collection.
JScript Syntax
var oAttributes = oISchemaAttributeGroup.attributes;
Parameters
None.
Return Values
oAttributes
An object. The collection of declared attributes. This collection contains objects that implement the ISchemaAttribute
interface.
Visual Basic Syntax
Set oAttributes = oISchemaAttributeGroup.attributes
Parameters
None.
Return Values
oAttributes
An object. The collection of declared attributes. This collection contains objects that implement the ISchemaAttribute
interface.
C/C++ Syntax
HRESULT get_attributes(ISchemaItemCollection** attributes);
Parameters
attributes[out,retval]
An object. The collection of attributes.
Return Values
S_OK
The value returned if successful.
E_POINTER
The value returned if the attributes
object is NULL.
E_FAIL
The value returned if something else is wrong.
Versioning
Implemented in: MSXML 6.0
Applies to
ISchemaAttributeGroup Interface