Slijedite ovaj vodič o tome kako dodati hipervezu na PowerPoint s C# REST API. Naučit ćete automatski umetnuti hipervezu u PowerPoint uz C# RESTful Service koristeći Cloud SDK temeljen na .NET-u koji podržava sve napredne značajke za rad s prezentacijama. Pomoći će vam pri odabiru određenog slajda i oblika za dodavanje prilagođene hiperveze.
Preduvjet
preuzimanje Aspose.Slides Cloud SDK for Dotnet for inserting hyperlinks
Postavite C# projekt s gornjim SDK-om da dodate vezu na oblik
Koraci za dodavanje veze na PowerPoint s C# .NET-baziranim API-jem
- Instancirajte SlidesApi s API ključem i tajnom za autentifikaciju
- Pročitajte ulaznu datoteku u memorijski tok i prenesite je
- Postavite indekse slajdova i oblika za dodavanje hiperveze (indeks temeljen na 1)
- Stvorite objekt oblika s hipervezom
- Update oblik na navedenom slajdu s hipervezom
- Ispišite ažurirani URL hiperveze na konzolu radi provjere
- Preuzmite ažuriranu prezentaciju iz oblaka kao stream i spremite je na disk
Ovi koraci objašnjavaju kako dodati hipervezu u PowerPoint s C# REST API-jem. Možete stvoriti oblik i dodati hipervezu definiranjem vrste akcije i vanjskog URL-a. Konačno, ažurirajte ciljni oblik na željenom slajdu pomoću novostvorenog oblika i po potrebi spremite izlaz na disk.
Kod za umetanje veze u PowerPoint s C# Low Code API-jem
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. | |
} | |
} | |
} |
Ovaj kôd pokazuje kako umetnuti hipervezu u PowerPoint s C# REST sučeljem. Možete postaviti različita svojstva hiperveze kao što je zastavica za omogućavanje/onemogućavanje hiperveze, opis alata, povijest, označavanje klika i zaustavljanje zvuka pri kliku. Imajte na umu da su sva ova svojstva dostupna lebdenjem iznad hiperveze umjesto klikom na nju.
Ovaj nas je članak naučio stvoriti hipervezu u PowerPointu s C# Low Code API-jem. Za dodavanje SmartArt-a na slajd pogledajte članak na Dodajte SmartArt u PowerPoint s C# REST API-jem.