Հետևեք այս ուղեցույցին, թե ինչպես ավելացնել հիպերհղում PowerPoint-ին C# REST API-ով: Դուք կսովորեք ավտոմատ կերպով հղում մտցնել PowerPoint-ում C# RESTful ծառայության միջոցով՝ օգտագործելով .NET-ի վրա հիմնված Cloud SDK-ն, որն աջակցում է ներկայացումների հետ աշխատելու բոլոր առաջադեմ հնարավորություններին: Այն կօգնի ձեզ ընտրել որոշակի սլայդ և ձև՝ հատուկ հիպերհղում ավելացնելու համար:
Նախապայման
[Ստեղծել հաշվի API հավատարմագրեր] ( https://kb.aspose.cloud/ hy/total/net/how-to-create-aspose-cloud-apis-account/)
Բեռնել Aspose.Slides Cloud SDK for Dotnet for inserting hyperlinks
Կարգավորեք C# նախագիծը վերը նշված SDK-ով՝ որևէ ձևի հղում ավելացնելու համար
PowerPoint-ին հղում ավելացնելու քայլեր C# .NET-ի վրա հիմնված API-ով
- Ստեղծեք SlidesApi-ը API բանալիով և նույնականացման գաղտնիքով
- Կարդացեք մուտքագրված ֆայլը հիշողության հոսքի մեջ և վերբեռնեք այն
- Սահմանեք սլայդների և ձևերի ինդեքսները՝ հիպերհղում ավելացնելու համար (1-ի վրա հիմնված ինդեքս)
- Ստեղծեք ձևի օբյեկտ հիպերհղումով
- Update ձևը նշված սլայդի վրա` հիպերհղումով
- Ստուգման համար տպեք նորացված հիպերհղման URL-ը վահանակի վրա
- Ներբեռնեք թարմացված ներկայացումը ամպից որպես հոսք և պահեք այն սկավառակի վրա
Այս քայլերը բացատրում են ինչպես ավելացնել հիպերհղումը PowerPoint-ում C# REST API-ով: Դուք կարող եք ստեղծել Shape և ավելացնել հիպերհղում` սահմանելով գործողության տեսակը և արտաքին 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 ինտերֆեյսի միջոցով: Դուք կարող եք սահմանել հիպերհղման տարբեր հատկություններ, ինչպիսիք են դրոշը, որպեսզի միացնեք/անջատեք հիպերհղումը, գործիքի հուշումը, պատմությունը, ընդգծեք սեղմումը և դադարեցնեք ձայնը սեղմման ժամանակ: Նկատի ունեցեք, որ այս բոլոր հատկությունները հասանելի են՝ սավառնելով հիպերհղման վրա, այլ ոչ թե սեղմելով այն:
Այս հոդվածը մեզ սովորեցրել է ստեղծել hyperlink PowerPoint-ում C# Low Code API-ով: Սլայդում SmartArt ավելացնելու համար տես Ավելացնել SmartArt-ը PowerPoint-ում C# REST API-ով-ի հոդվածը: