Allows you to add one or more schemas to a schema collection that can then be added to a stream in the data store and to the Schema Library.

Note
References to DTDs from custom XML parts are not supported. DTD references in custom XML parts will not resolve, and custom XML parts containing DTD references generate an exception when an attempt is made to save the file's content to a flat XML file.

Syntax

expression.Add(NamespaceURI, Alias, FileName, InstallForAllUsers)

expression An expression that returns a CustomXMLSchemaCollection object.

Parameters

Name Required/Optional Data Type Description
NamespaceURI Optional String Contains the namespace of the schema to be added to the collection. If the schema already exists in the Schema Library, the method will retrieve it from there.
Alias Optional String Contains the alias of the schema to be added to the collection. If the alias already exists in the Schema Library, the method can find it using this argument.
FileName Optional String Contains the location of the schema on a disk. If this parameter is specified, the schema is added to the collection and to to the Schema Library.
InstallForAllUsers Optional Boolean Specifies whether, in the case where the method is adding the schema to the Schema Library, the Schema Library keys should be written to the registry(HKey_Local_Machine for all users or HKey_Current_User for just the current user). The parameter defaults to False and writes to HKey_Current_User.

Return Value
CustomXMLSchema

Example
The following example adds a schema to the schema collection, selects a single node from it, and then returns the node to the calling procedure.

Visual Basic for Applications
Function AddSchema() On Error GoTo Err Dim objCustomXMLSchemaCollection As CustomXMLSchemaCollection Dim cxp1 As CustomXMLSchema Dim cxn As CustomXMLNode ' Adds a schema to the collection. cxp1 = objCustomXMLSchemaCollection.Add("urn:invoice:namespace", "coreDefinitions", wdCore.xsd", True) ... Set cxn = cxp4.SelectSingleNode("//*[@quantity < 4]") AddSchema = cxn Exit Function ' Exception handling. Show the message and resume. Err: MsgBox (Err.Description) Resume Next End Function 

See also: