Proprietà DocumentBase.XMLSchemaReferences
Ottiene un insieme di XMLSchemaReferences che rappresenta tutti gli schemi collegati al documento.
Spazio dei nomi: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property XMLSchemaReferences As XMLSchemaReferences
Get
public XMLSchemaReferences XMLSchemaReferences { get; }
Valore proprietà
Tipo: Microsoft.Office.Interop.Word.XMLSchemaReferences
Insieme di XMLSchemaReferences che rappresenta gli schemi collegati al documento.
Esempi
Nell'esempio di codice riportato di seguito viene illustrato come visualizzare l'URI di ogni schema XML a cui si fa riferimento nel documento. Per utilizzare questo esempio, eseguirlo dalla classe ThisDocument in un progetto a livello di documento.
Private Sub DocumentXMLSchemaReferences()
Dim stringBuilder1 As New System.Text.StringBuilder()
' Add all of the schema URIs to the StringBuilder.
Dim schema As Word.XMLSchemaReference
For Each schema In Me.XMLSchemaReferences
stringBuilder1.Append(schema.NamespaceURI & ", ")
Next schema
' End the StringBuilder with a period.
stringBuilder1.Remove(stringBuilder1.Length - 2, 2)
stringBuilder1.Append(".")
MessageBox.Show("The document contains " & Me.XMLSchemaReferences.Count.ToString() _
& " schema(s): " & stringBuilder1.ToString())
End Sub
private void DocumentXMLSchemaReferences()
{
System.Text.StringBuilder stringBuilder1 =
new System.Text.StringBuilder();
// Add all of the schema URIs to the StringBuilder.
foreach (Word.XMLSchemaReference schema in
this.XMLSchemaReferences)
{
stringBuilder1.Append(schema.NamespaceURI + ", ");
}
// End the StringBuilder with a period.
stringBuilder1.Remove(stringBuilder1.Length - 2, 2);
stringBuilder1.Append(".");
MessageBox.Show("The document contains " +
this.XMLSchemaReferences.Count.ToString() +
" schema(s): " + stringBuilder1.ToString());
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.