WorkbookBase.WebOptions 屬性
取得 Microsoft.Office.Interop.Excel.WebOptions 集合,其包含當您將文件另存為網頁或開啟網頁時,Microsoft Office Excel 所使用的活頁簿層級屬性。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel.v4.0.Utilities (在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)
語法
'宣告
Public ReadOnly Property WebOptions As WebOptions
public WebOptions WebOptions { get; }
屬性值
型別:Microsoft.Office.Interop.Excel.WebOptions
Microsoft.Office.Interop.Excel.WebOptions 集合,包含當您將文件另存為網頁或開啟網頁時,Excel 所使用的活頁簿層級屬性。
範例
下列程式碼範例使用 WebOptions 屬性,啟用可移植網路圖形 (PNG) 做為輸出格式,用指定的網頁下載 Office Web 元件 (如果尚未安裝),並在文件另存為網頁時允許長檔名。
這是示範文件層級自訂的範例。
Private Sub SetWebOptions()
Me.WebOptions.AllowPNG = True
Me.WebOptions.DownloadComponents = True
Me.WebOptions.UseLongFileNames = True
End Sub
private void SetWebOptions()
{
this.WebOptions.AllowPNG = true;
this.WebOptions.DownloadComponents = true;
this.WebOptions.UseLongFileNames = true;
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。