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