WorkbookBase.SmartDocument プロパティ

定義

スマート ドキュメント ソリューションの設定を表す Microsoft.Office.Core.SmartDocument を取得します。

public:
 property Microsoft::Office::Core::SmartDocument ^ SmartDocument { Microsoft::Office::Core::SmartDocument ^ get(); };
public Microsoft.Office.Core.SmartDocument SmartDocument { get; }
member this.SmartDocument : Microsoft.Office.Core.SmartDocument
Public ReadOnly Property SmartDocument As SmartDocument

プロパティ値

スマート ドキュメント ソリューションの設定を表す Microsoft.Office.Core.SmartDocument。

次のコード例では、 プロパティを SmartDocument 使用して、ユーザーがドキュメントに添付する XML 拡張パックを選択できるダイアログ ボックスを表示します。

この例は、ドキュメント レベルのカスタマイズ用です。

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

適用対象