WorkbookBase.SmartDocument プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
スマート ドキュメント ソリューションの設定を表す 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