在 Android 上管理簡報中的 ActiveX 控制項
簡介
ActiveX 控制項在簡報中使用。Aspose.Slides for Android via Java 允許您加入與管理 ActiveX 控制項,但與一般簡報圖形相比,它們較難管理。我們在 Aspose.Slides 中實作了加入 Media Player Active 控制的支援。請注意,ActiveX 控制項不是圖形;它們不屬於簡報的 IShapeCollection。它們屬於獨立的 IControlCollection。在本主題中,我們將向您展示如何使用它們。
將 Media Player ActiveX 控制項新增至投影片
要新增 ActiveX Media Player 控制項,請執行以下步驟:
- 建立 Presentation 類別的實例,並產生一個空白簡報實例。
- 在 Presentation 中存取目標投影片。
- 使用 IControlCollection 所提供的 addControl 方法加入 Media Player ActiveX 控制項。
- 存取 Media Player ActiveX 控制項,並使用其屬性設定影片路徑。
- 將簡報儲存為 PPTX 檔案。
以下範例程式碼根據上述步驟,示範如何將 Media Player ActiveX 控制項加入投影片:
// 建立空白簡報實例
Presentation pres = new Presentation();
try {
// 加入 Media Player ActiveX 控制項
pres.getSlides().get_Item(0).getControls().addControl(ControlType.WindowsMediaPlayer, 100, 100, 400, 400);
// 存取 Media Player ActiveX 控制項並設定影片路徑
pres.getSlides().get_Item(0).getControls().get_Item(0).getProperties().set_Item("URL", "Wildlife.wmv");
// 儲存簡報
pres.save("Output.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}
修改 ActiveX 控制項
若要在投影片上管理簡單的 ActiveX 控制項,例如文字方塊與簡單的指令按鈕,請執行以下步驟:
- 建立 Presentation 類別的實例,並載入含有 ActiveX 控制項的簡報。
- 依索引取得投影片參考。
- 透過存取 IControlCollection 來取得投影片中的 ActiveX 控制項。
- 使用 IControl 物件存取 TextBox1 ActiveX 控制項。
- 變更 TextBox1 ActiveX 控制項的屬性,包括文字、字型、字型大小以及框架位置。
- 存取第二個名為 CommandButton1 的控制項。
- 變更按鈕的標題、字型與位置。
- 調整 ActiveX 控制項框架的位置。
- 將修改後的簡報寫入 PPTX 檔案。
以下範例程式碼根據上述步驟,示範如何管理簡單的 ActiveX 控制項:
// 存取含有 ActiveX 控制項的簡報
Presentation pres = new Presentation("ActiveX.pptm");
try {
// 存取簡報中的第一張投影片
ISlide slide = pres.getSlides().get_Item(0);
// 變更文字方塊文字
IControl control = slide.getControls().get_Item(0);
if (control.getName().equalsIgnoreCase("TextBox1") && control.getProperties() != null) {
String newText = "Changed text";
control.getProperties().set_Item("Value", newText);
// 變更替代圖片。PowerPoint 會在 ActiveX 啟用期間替換此圖片,
// 因此有時可以保持圖片不變。
BufferedImage image = new BufferedImage((int) control.getFrame().getWidth(), (int) control.getFrame().getHeight(),
BufferedImage.TYPE_INT_ARGB);
java.awt.Graphics graphics = image.getGraphics();
graphics.setColor(SystemColor.window);
graphics.fillRect(0, 0, image.getWidth(), image.getHeight());
java.awt.Font font = new java.awt.Font(control.getProperties().get_Item("FontName"), java.awt.Font.PLAIN, 16);
graphics.setColor(SystemColor.windowText);
graphics.setFont(font);
graphics.drawString(newText, 10, 20);
graphics.setColor(SystemColor.controlShadow);
graphics.drawLine(0, image.getHeight() - 1, 0, 0);
graphics.drawLine(0, 0, image.getWidth() - 1, 0);
graphics.setColor(SystemColor.controlDkShadow);
graphics.drawLine(1, image.getHeight() - 2, 1, 1);
graphics.drawLine(1, 1, image.getWidth() - 2, 1);
graphics.setColor(SystemColor.controlHighlight);
graphics.drawLine(1, image.getHeight() - 1, image.getWidth() - 1, image.getHeight() - 1);
graphics.drawLine(image.getWidth() - 1, image.getHeight() - 1, image.getWidth() - 1, 1);
graphics.setColor(SystemColor.controlLtHighlight);
graphics.drawLine(0, image.getHeight(), image.getWidth(), image.getHeight());
graphics.drawLine(image.getWidth(), image.getHeight(), image.getWidth(), 0);
graphics.dispose();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(image, "PNG", baos);
control.getSubstitutePictureFormat().getPicture().setImage(pres.getImages().addImage(baos.toByteArray()));
}
// 變更按鈕標題
control = pres.getSlides().get_Item(0).getControls().get_Item(1);
if (control.getName().equalsIgnoreCase("CommandButton1") && control.getProperties() != null) {
String newCaption = "Show MessageBox";
control.getProperties().set_Item("Caption", newCaption);
// 變更替代圖片
BufferedImage image = new BufferedImage((int) control.getFrame().getWidth(), (int) control.getFrame().getHeight(),
BufferedImage.TYPE_INT_ARGB);
java.awt.Graphics graphics = image.getGraphics();
graphics.setColor(SystemColor.control);
graphics.fillRect(0, 0, image.getWidth(), image.getHeight());
java.awt.Font font = new java.awt.Font(control.getProperties().get_Item("FontName"), java.awt.Font.PLAIN, 16);
graphics.setColor(SystemColor.windowText);
graphics.setFont(font);
FontMetrics metrics = graphics.getFontMetrics(font);
graphics.drawString(newCaption, (image.getWidth() - metrics.stringWidth(newCaption)) / 2, 20);
graphics.setColor(SystemColor.controlLtHighlight);
graphics.drawLine(0, image.getHeight() - 1, 0, 0);
graphics.drawLine(0, 0, image.getWidth() - 1, 0);
graphics.setColor(SystemColor.controlHighlight);
graphics.drawLine(1, image.getHeight() - 2, 1, 1);
graphics.drawLine(1, 1, image.getWidth() - 2, 1);
graphics.setColor(SystemColor.controlShadow);
graphics.drawLine(1, image.getHeight() - 1, image.getWidth() - 1, image.getHeight() - 1);
graphics.drawLine(image.getWidth() - 1, image.getHeight() - 1, image.getWidth() - 1, 1);
graphics.setColor(SystemColor.controlDkShadow);
graphics.drawLine(0, image.getHeight(), image.getWidth(), image.getHeight());
graphics.drawLine(image.getWidth(), image.getHeight(), image.getWidth(), 0);
graphics.dispose();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(image, "PNG", baos);
control.getSubstitutePictureFormat().getPicture().setImage(pres.getImages().addImage(baos.toByteArray()));
}
// 向下移動 100 點
for (IControl ctl : pres.getSlides().get_Item(0).getControls()) {
IShapeFrame frame = ctl.getFrame();
ctl.setFrame(new ShapeFrame(frame.getX(), frame.getY() + 100,
frame.getWidth(), frame.getHeight(), frame.getFlipH(), frame.getFlipV(), frame.getRotation()));
}
pres.save("withActiveX-edited_java.pptm", SaveFormat.Pptm);
// 移除控制項
pres.getSlides().get_Item(0).getControls().clear();
pres.save("withActiveX-cleared_java.pptm", SaveFormat.Pptm);
} catch(IOException e) {
} finally {
if (pres != null) pres.dispose();
}
常見問題
當在 Java 執行環境中無法執行時,Aspose.Slides 讀取並重新儲存時會保留 ActiveX 控制項嗎?
是的。Aspose.Slides 將它們視為簡報的一部分,能夠讀取與修改其屬性與框架;不需要執行控制項本身也能保留它們。
ActiveX 控制項與簡報中的 OLE 物件有何不同?
ActiveX 控制項是互動式的受管理控制項(按鈕、文字方塊、媒體播放器),而 OLE 指的是嵌入式的應用程式物件(例如 Excel 工作表)。它們的儲存與處理方式不同,且擁有不同的屬性模型。
若檔案已由 Aspose.Slides 修改,ActiveX 事件與 VBA 巨集是否仍能運作?
Aspose.Slides 會保留現有的標記與中繼資料;然而,事件與巨集僅在 Windows 上的 PowerPoint 中、且安全性允許時才會執行。此函式庫不會執行 VBA。