Följ den här guiden om hur du lägger till hyperlänk till PowerPoint med C# REST API. Du lär dig att automatiskt infoga hyperlänk i PowerPoint med C# RESTful Service med hjälp av en .NET-baserad moln-SDK som stöder alla avancerade funktioner för att arbeta med presentationer. Det hjälper dig att välja en viss bild och form för att lägga till en anpassad hyperlänk.
Nödvändig förutsättning
Ladda ner Aspose.Slides Cloud SDK for Dotnet for inserting hyperlinks
Ställ in C#-projekt med ovanstående SDK för att lägga till en länk till en form
Steg för att lägga till en länk till PowerPoint med C# .NET-baserat API
- Instantiera SlidesApi med API-nyckeln och hemligheten för autentisering
- Läs indatafilen i en minnesström och ladda upp den
- Ställ in index för bilderna och formerna för att lägga till hyperlänk (1-baserat index)
- Skapa ett formobjekt med en hyperlänk
- Update formen på den angivna bilden med hyperlänken
- Skriv ut den uppdaterade hyperlänkens URL till konsolen för verifiering
- Ladda ner den uppdaterade presentationen från molnet som en stream och spara den på disken
Dessa steg förklarar hur man lägger till hyperlänk i PowerPoint med C# REST API. Du kan skapa en Shape och lägga till en hyperlänk genom att definiera åtgärdstypen och extern URL. Uppdatera slutligen målformen i önskad bild med den nyskapade formen och spara utdata på disken om det behövs.
Kod för att infoga länk i PowerPoint med 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. | |
} | |
} | |
} |
Den här koden visar hur man infogar hyperlänk i PowerPoint med C# REST Interface. Du kan ställa in olika egenskaper för en hyperlänk som en flagga för att aktivera/inaktivera en hyperlänk, verktygstips, historik, markera klick och stoppa ljud vid klick. Observera att alla dessa egenskaper är tillgängliga genom att hålla muspekaren över hyperlänken istället för att klicka på den.
Den här artikeln har lärt oss att skapa en hyperlänk i PowerPoint med C# Low Code API. För att lägga till en SmartArt i en bild, se artikeln om Lägg till SmartArt till PowerPoint med C# REST API.