DocumentBase.Type – vlastnost
Načtení typu dokumentu (šablona nebo dokument).
Obor názvů: Microsoft.Office.Tools.Word
Sestavení: Microsoft.Office.Tools.Word.v4.0.Utilities (v Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Syntaxe
'Deklarace
Public ReadOnly Property Type As WdDocumentType
Get
public WdDocumentType Type { get; }
Hodnota vlastnosti
Typ: Microsoft.Office.Interop.Word.WdDocumentType
Jeden z WdDocumentType hodnoty.
Příklady
Následující příklad kódu zobrazí zprávu, která ukazuje typ dokladu. Chcete-li použít tento příklad spustit z ThisDocument třídy v projektu úrovni dokumentu.
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;
}
}
Zabezpečení rozhraní .NET Framework
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.