Chart.PrintOutEx 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
列印圖表。
public void PrintOutEx (object From, object To, object Copies, object Preview, object ActivePrinter, object PrintToFile, object Collate, object PrToFileName);
abstract member PrintOutEx : obj * obj * obj * obj * obj * obj * obj * obj -> unit
Public Sub PrintOutEx (Optional From As Object, Optional To As Object, Optional Copies As Object, Optional Preview As Object, Optional ActivePrinter As Object, Optional PrintToFile As Object, Optional Collate As Object, Optional PrToFileName As Object)
參數
- From
- Object
開始列印的頁碼。 如果省略這個引數,則會從頭開始列印。
- To
- Object
要列印之最後一頁的頁碼。 如果省略這個引數,則會在最後一頁結束列印。
- Copies
- Object
要列印的份數。 如果省略這個引數,則會列印一份。
- Preview
- Object
true
可讓 Microsoft Office Excel 在列印物件之前叫用列印預覽。 false
(或省略) 則表示會立即列印物件。
- ActivePrinter
- Object
設定使用中印表機的名稱。
- PrintToFile
- Object
true
可列印至檔案。 如果未指定 PrToFileName
,Excel 會提示使用者輸入輸出檔的名稱。
- Collate
- Object
true
可將多個複本自動分頁。
- PrToFileName
- Object
要列印的目的地檔案名稱。 只有在 是 true
時PrintToFile
,才會使用此參數。
範例
下列程式代碼範例會使用 方法, PrintOutEx 將圖表 Chart_1
前兩頁的一個複本列印到預設印表機。 若要執行此程式碼範例,您的活頁簿必須包含名為的 Sheet1
工作表,其中包含名為的 Chart_1
圖表。
private void PrintChart()
{
Microsoft.Office.Tools.Excel.Chart myChart =
Globals.Sheet1.Chart_1;
myChart.PrintOutEx(
1,
2,
1,
false,
false,
true);
}
Private Sub PrintChart()
Dim myChart As Microsoft.Office.Tools.Excel.Chart = _
Globals.Sheet1.Chart_1
myChart.PrintOutEx( _
From:=1, _
To:=2, _
Copies:=1, _
Preview:=False)
End Sub
備註
和描述From
To
中的「頁面」是指列印的頁面,而不是工作表或活頁簿中的整體頁面。
選擇性參數
如需選擇性參數的相關信息,請參閱 Office 方案中的選擇性參數。