Returns a collection of notation
objects.
The following example shows how to list the <notation>
declarations from the ISchemaItemCollection
of notations.
Set oSchemaCache = CreateObject("Msxml2.XMLSchemaCache.5.0") oSchemaCache.add "", "po.xsd" Set oSchema = oSchemaCache.getSchema("") For Each oNotation in oSchema.notations WScript.Echo oNotation.name + " " + oNotation.systemIdentifier + " " + oNotation.publicIdentifier Next
var oNotations = oISchema.notations;
None.
ISchemaNotation
interface.Set oNotations = oISchema.notations
None.
ISchemaNotation
interface.HRESULT get_notations (ISchemaItemCollection** notations);
notations
collection is NULL.To view reference information for Visual Basic or C/C++ only, click the Language Filter button in the upper-left corner of the page.
ISchemaItemCollection Interface | ISchemaNotation Interface
Applies to: ISchema Interface