ปฏิบัติตามคำแนะนำนี้เกี่ยวกับวิธี เพิ่มไฮเปอร์ลิงก์ไปยัง PowerPoint ด้วย C# REST API คุณจะได้เรียนรู้วิธี แทรกไฮเปอร์ลิงก์ใน PowerPoint ด้วย C# RESTful Service โดยอัตโนมัติ โดยใช้ Cloud SDK ที่ใช้ .NET ซึ่งสนับสนุนฟีเจอร์ขั้นสูงทั้งหมดสำหรับการทำงานกับงานนำเสนอ มันจะช่วยคุณในการเลือกสไลด์และรูปร่างเฉพาะสำหรับการเพิ่มไฮเปอร์ลิงก์ที่กำหนดเอง
ข้อกำหนดเบื้องต้น
ดาวน์โหลด Aspose.Slides Cloud SDK for Dotnet for inserting hyperlinks
ตั้งค่าโปรเจ็กต์ C# ด้วย SDK ข้างต้นเพื่อเพิ่มลิงก์ไปยังรูปร่าง
ขั้นตอนในการเพิ่มลิงก์ไปยัง PowerPoint ด้วย API ที่ใช้ C# .NET
- สร้าง SlidesApi ด้วยคีย์ API และรหัสลับสำหรับการตรวจสอบสิทธิ์
- อ่านไฟล์อินพุตลงในสตรีมหน่วยความจำแล้วอัปโหลด
- ตั้งค่าดัชนีของสไลด์และรูปร่างสำหรับการเพิ่มไฮเปอร์ลิงก์ (ดัชนีแบบ 1)
- สร้างวัตถุรูปร่างด้วยไฮเปอร์ลิงก์
- Update รูปร่างบนสไลด์ที่ระบุพร้อมไฮเปอร์ลิงก์
- พิมพ์ URL ของไฮเปอร์ลิงก์ที่อัปเดตไปยังคอนโซลเพื่อตรวจสอบ
- ดาวน์โหลดงานนำเสนอที่อัปเดตจากระบบคลาวด์เป็นสตรีมและบันทึกลงในดิสก์
ขั้นตอนเหล่านี้อธิบาย วิธีเพิ่มไฮเปอร์ลิงก์ใน PowerPoint ด้วย C# REST API คุณสามารถสร้างรูปร่างและเพิ่มไฮเปอร์ลิงก์โดยกำหนดประเภทการดำเนินการและ URL ภายนอก สุดท้าย อัปเดตรูปร่างเป้าหมายในสไลด์ที่ต้องการโดยใช้รูปร่างที่สร้างขึ้นใหม่และบันทึกเอาต์พุตลงในดิสก์หากจำเป็น
รหัสสำหรับแทรกลิงก์ใน PowerPoint ด้วย C# Low Code API
using Aspose.Slides.Cloud.Sdk; // Import the Aspose.Slides Cloud SDK to work with PowerPoint presentations. | |
using Aspose.Slides.Cloud.Sdk.Model; // Import models used by the SDK. | |
using System; // Import the System namespace for basic functionalities. | |
using System.IO; // Import System.IO for file input/output operations. | |
namespace AsposeTestCodes | |
{ | |
class Program | |
{ | |
static void Main(string[] args) // Main method - the program's entry point. | |
{ | |
// Instantiate the SlidesApi with the API key and secret for authentication. | |
SlidesApi slidesApi = new SlidesApi("Client ID", "Client Secret"); | |
// Name of the PowerPoint file to work with. | |
string fileName = "PresentationWithoutHyperlink.pptx"; | |
// Read the file into a memory stream and upload it to the Aspose.Slides cloud storage. | |
FilesUploadResult uploadedPresResult = slidesApi.UploadFile(fileName, new MemoryStream(File.ReadAllBytes(fileName))); | |
// Index of the slide and shape where the target shape is located (1-based index). | |
int slideIndex = 2, shapeIndex = 2; | |
Shape shape = new Shape // Create a shape object with a hyperlink | |
{ | |
HyperlinkClick = new Hyperlink | |
{ | |
ActionType = Hyperlink.ActionTypeEnum.Hyperlink, // Set the action type as a hyperlink. | |
ExternalUrl = "https://docs.aspose.cloud/slides" // The URL for the hyperlink. | |
} | |
}; | |
// Update the shape on the specified slide with the hyperlink. | |
ShapeBase updatedShpWithHyperlink = slidesApi.UpdateShape(fileName, slideIndex, shapeIndex, shape); | |
// Print the updated hyperlink's URL to the console for verification. | |
Console.WriteLine(updatedShpWithHyperlink.HyperlinkClick.ExternalUrl); | |
// Download the updated presentation from the cloud as a stream. | |
Stream stream = slidesApi.DownloadFile(fileName); | |
// Save the downloaded presentation to the local file system with a new name. | |
var fs = new FileStream("PresWithHyperlinks.pptx", FileMode.Create, FileAccess.Write); | |
stream.CopyTo(fs); // Copy the content from the stream to the file. | |
} | |
} | |
} |
รหัสนี้สาธิต วิธีแทรกไฮเปอร์ลิงก์ใน PowerPoint ด้วยอินเทอร์เฟซ C# REST คุณสามารถตั้งค่าคุณสมบัติต่างๆ ของไฮเปอร์ลิงก์ได้ เช่น ธงเพื่อเปิด/ปิดใช้งานไฮเปอร์ลิงก์ คำแนะนำเครื่องมือ ประวัติ การไฮไลต์การคลิก และหยุดเสียงเมื่อคลิก โปรดทราบว่าคุณสมบัติทั้งหมดเหล่านี้พร้อมใช้งานโดยการวางเมาส์เหนือไฮเปอร์ลิงก์แทนที่จะคลิก
บทความนี้ได้สอนเราให้สร้าง ไฮเปอร์ลิงก์ใน PowerPoint ด้วย C# Low Code API หากต้องการเพิ่ม SmartArt ในสไลด์ โปรดดูบทความเกี่ยวกับ เพิ่ม SmartArt ให้กับ PowerPoint ด้วย C# REST API