Vadovaukitės šiuo vadovu, kaip pridėti hipersaitą prie PowerPoint naudojant C# REST API. Išmoksite automatiškai įterpti hipersaitą į PowerPoint naudodami C# RESTful Service naudodami .NET pagrindu sukurtą debesies SDK, palaikantį visas pažangias funkcijas dirbant su pristatymais. Tai padės jums pasirinkti tam tikrą skaidrę ir formą, kad galėtumėte pridėti pasirinktinį hipersaitą.
Būtina sąlyga
Atsisiųsti Aspose.Slides Cloud SDK for Dotnet for inserting hyperlinks
Nustatykite C# projektą naudodami aukščiau pateiktą SDK, kad pridėtumėte nuorodą į formą
Veiksmai, kaip pridėti nuorodą į „PowerPoint“ naudojant C# .NET pagrįstą API
- Sukurkite SlidesApi naudodami API raktą ir autentifikavimo paslaptį
- Perskaitykite įvesties failą į atminties srautą ir įkelkite jį
- Nustatyti skaidrių ir formų indeksus, kad būtų galima pridėti hipersaitą (1 indeksas)
- Sukurkite formos objektą su hipersaitu
- Update figūrą nurodytoje skaidrėje su hipersaitu
- Atspausdinkite atnaujintą hipersaito URL į konsolę, kad patikrintumėte
- Atsisiųskite atnaujintą pristatymą iš debesies kaip srautą ir išsaugokite jį diske
Šie veiksmai paaiškina kaip pridėti hipersaitą PowerPoint naudojant C# REST API. Galite sukurti figūrą ir pridėti hipersaitą, nurodydami veiksmo tipą ir išorinį URL. Galiausiai atnaujinkite tikslinę formą norimoje skaidrėje naudodami naujai sukurtą formą ir, jei reikia, išsaugokite išvestį diske.
Kodas nuorodai įterpti į PowerPoint su 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. | |
} | |
} | |
} |
Šis kodas parodo kaip įterpti hipersaitą į PowerPoint naudojant C# REST sąsają. Galite nustatyti įvairias hipersaito ypatybes, pvz., vėliavėlę, kad įjungtumėte / išjungtumėte hipersaitą, patarimą, istoriją, paryškintumėte spustelėjimą ir sustabdytumėte garsą spustelėjus. Atminkite, kad visos šios savybės pasiekiamos užvedus pelės žymeklį virš hipersaito, o ne jį spustelėjus.
Šis straipsnis išmokė mus sukurti hipersaitą PowerPoint naudojant C# Low Code API. Norėdami skaidrėje pridėti SmartArt, žr. straipsnį Pridėkite SmartArt prie PowerPoint naudodami C# REST API.