Freigeben über


DocumentBase.SmartDocument-Eigenschaft

Ruft ein SmartDocument ab, das die Einstellungen für eine Smart Document-Projektmappe darstellt.

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 SmartDocument As SmartDocument
    Get
public SmartDocument SmartDocument { get; }

Eigenschaftswert

Typ: Microsoft.Office.Core.SmartDocument
Ein SmartDocument, das die Einstellungen für eine Smart Document-Projektmappe darstellt.

Hinweise

Weitere Informationen zu Smart Documents finden Sie im Smart Document Software Development Kit auf der Microsoft Developer Network (MSDN)-Website.

Beispiele

Im folgenden Codebeispiel wird eine Liste mit gültigen XML-Erweiterungspaketen für das Dokument angezeigt. Wenn Sie dieses Beispiel verwenden möchten, führen Sie es von der ThisDocument-Klasse in einem Projekt auf Dokumentebene aus.

Private Sub DocumentSmartDocument()
    Me.SmartDocument.PickSolution(True)
End Sub 
private void DocumentSmartDocument()
{
    this.SmartDocument.PickSolution(true);
}

.NET Framework-Sicherheit

Siehe auch

Referenz

DocumentBase Klasse

Microsoft.Office.Tools.Word-Namespace