有時我們需要列印圖片,很多人不知道如何用word在A4紙上打出多張圖片,其實做法很簡單,現在就和大家分享操作方法:
3、在“頁面設定”中把“頁邊距”上下左右全改為“0.5釐米”,再將方向改成“橫向”接著按“確定”
7、系統會彈出“Microsoft Visual Basic”,然後複製下面程式碼貼上到“程式碼”窗中儲存。
Dim i As Integer
For i = 1 To ActiveDocument.InlineShapes.Count
With ActiveDocument.InlineShapes(i)
.Height = 238 * 0.7
.Width = 315 * 0.8
.Borders(wdBorderTop).LineStyle = wdLineStyleSingle
.Borders(wdBorderTop).LineWidth = wdLineWidth050pt
.Borders(wdBorderTop).Color = wdColorAutomatic
End With
Next i
9、這就是列印結果預覽了
3、當插入完成後,我們可以將圖片適當的進行調整大小,效果如下圖所示。
有時我們需要列印圖片,很多人不知道如何用word在A4紙上打出多張圖片,其實做法很簡單,現在就和大家分享操作方法:
3、在“頁面設定”中把“頁邊距”上下左右全改為“0.5釐米”,再將方向改成“橫向”接著按“確定”
7、系統會彈出“Microsoft Visual Basic”,然後複製下面程式碼貼上到“程式碼”窗中儲存。
Dim i As Integer
For i = 1 To ActiveDocument.InlineShapes.Count
With ActiveDocument.InlineShapes(i)
.Height = 238 * 0.7
.Width = 315 * 0.8
.Borders(wdBorderTop).LineStyle = wdLineStyleSingle
.Borders(wdBorderTop).LineWidth = wdLineWidth050pt
.Borders(wdBorderTop).Color = wdColorAutomatic
End With
Next i
9、這就是列印結果預覽了