ISchemaNotation Interface

MSXML 5.0 SDK

Microsoft XML Core Services (MSXML) 5.0 for Microsoft Office - SOM Reference

ISchemaNotation Interface

Provides the URIs for the execution programs that are declared in a <notation> declaration. A notation object is returned from the notations property of the ISchema interface.

Properties

publicIdentifier Retrieves the public identifier URI.
systemIdentifier Retrieves the system identifier URI.

[Script]
var oNotations = oSchema.notations;
var oNotation = oNotations(index);

Parameters

index
A long integer. An index of the item within the collection. The first item is zero.
[Visual Basic]
Set oNotations = oSchema.notations
Set oNotation = oNotations(index)

Parameters

index
A long integer. An index of the item within the collection. The first item is zero.
[C/C++]
HRESULT get_notations(ISchemaItemCollection** notations);
HRESULT notations->get_item(long index, ISchemaNotation** notation);

Parameters

index
A long integer. An index of the item within the collection. The first item is zero.

Versioning

MSXML 4.0 and later

Requirements

[Visual Basic, C/C++]

Implementation: msxml5.dll, msxml2.lib

[C/C++]

Header and LIB files: msxml2.h, msxml2.lib, msxml2.idl

Inheritance: Inherits from the ISchemaItem interface.

To view reference information for Visual Basic or C/C++ only, click the Language Filter button Language Filter in the upper-left corner of the page.

See Also

Notation Declarations | notation Element | startDTD Method | SOM Reference