C# REST API を使用して PowerPoint にハイパーリンクを追加する方法については、このガイドに従ってください。プレゼンテーションを操作するためのすべての高度な機能をサポートする .NET ベースのクラウド SDK を使用して、C# RESTful サービスを使用して PowerPoint にハイパーリンクを自動的に挿入する方法を学習します。これは、カスタム ハイパーリンクを追加するための特定のスライドと図形を選択するのに役立ちます。
前提条件
ダウンロード Aspose.Slides Cloud SDK for Dotnet for inserting hyperlinks
上記の SDK を使用して C# プロジェクトをセットアップし、シェイプにリンクを追加します
C# .NET ベースの API を使用して PowerPoint にリンクを追加する手順
- 認証用の API キーとシークレットを使用して SlidesApi をインスタンス化します。
- 入力ファイルをメモリ ストリームに読み取り、アップロードします。
- ハイパーリンクを追加するためのスライドと図形のインデックスを設定します (1 から始まるインデックス)
- ハイパーリンクを含むシェイプ オブジェクトを作成する
- Update ハイパーリンクを含む指定されたスライド上の図形
- 更新されたハイパーリンクの URL を検証のためにコンソールに出力します。
- 更新されたプレゼンテーションをクラウドからストリームとしてダウンロードし、ディスクに保存します。
これらの手順では、C# REST API を使用して PowerPoint にハイパーリンクを追加する方法 について説明します。アクション タイプと外部 URL を定義することで、Shape を作成し、ハイパーリンクを追加できます。最後に、新しく作成した形状を使用して目的のスライド内のターゲット形状を更新し、必要に応じて出力をディスクに保存します。
C# ローコード API を使用して PowerPoint にリンクを挿入するコード
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. | |
} | |
} | |
} |
このコードは、C# REST インターフェイスを使用して PowerPoint にハイパーリンクを挿入する方法 を示しています。ハイパーリンクを有効/無効にするフラグ、ツールヒント、履歴、クリックの強調表示、クリック時の音の停止など、ハイパーリンクのさまざまなプロパティを設定できます。これらすべてのプロパティは、ハイパーリンクをクリックするのではなく、ハイパーリンクの上にマウスを置くことで利用できることに注意してください。
この記事では、C# Low Code API* を使用して PowerPoint で *ハイパーリンクを作成する方法を説明しました。スライドに SmartArt を追加する場合は、C# REST API を使用して SmartArt を PowerPoint に追加する の記事を参照してください。