DocumentBase.Type-Eigenschaft
Ruft den Dokumenttyp (Vorlage oder Dokument) ab.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Syntax
'Declaration
Public ReadOnly Property Type As WdDocumentType
public WdDocumentType Type { get; }
Eigenschaftswert
Typ: Microsoft.Office.Interop.Word.WdDocumentType
Einer der WdDocumentType-Werte.
Beispiele
Im folgenden Codebeispiel wird eine Meldung mit dem Dokumenttyp angezeigt. Wenn Sie dieses Beispiel verwenden möchten, führen Sie es von der ThisDocument-Klasse in einem Projekt auf Dokumentebene aus.
Private Sub DocumentType()
Select Case Me.Type
Case Word.WdDocumentType.wdTypeDocument
MessageBox.Show("The document is a normal" & " Word document.")
Case Word.WdDocumentType.wdTypeFrameset
MessageBox.Show("The document is a frameset.")
Case Word.WdDocumentType.wdTypeTemplate
MessageBox.Show("The document is a template.")
Case Else
MessageBox.Show("The document type could not" & " be discovered.")
End Select
End Sub
private void DocumentType()
{
switch (this.Type)
{
case Word.WdDocumentType.wdTypeDocument:
MessageBox.Show("The document is a normal" +
" Word document.");
break;
case Word.WdDocumentType.wdTypeFrameset:
MessageBox.Show("The document is a frameset.");
break;
case Word.WdDocumentType.wdTypeTemplate:
MessageBox.Show("The document is a template.");
break;
default:
MessageBox.Show("The document type could not" +
" be discovered.");
break;
}
}
.NET Framework-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.