Следуйте этому руководству, чтобы узнать, как добавить гиперссылку в PowerPoint с помощью C# REST API. Вы научитесь автоматически вставлять гиперссылки в PowerPoint с помощью C# RESTful Service с помощью облачного 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.