Tsk.HyperlinkSubAddress
Tsk.HyperlinkSubAddress field
The specific location in a document in a hyperlink associated with a task.
public static readonly Key<string, TaskKey> HyperlinkSubAddress;
Remarks
The full address (Hyperlink Href in Microsoft Project) of the hyperlink is a concatenation of HyperlinkAddress and HyperlinkSubAddress.
Examples
Shows how to read/write Tsk.Hyperlink properties.
var project = new Project();
var task = project.RootTask.Children.Add("Task");
task.Set(Tsk.Hyperlink, "Click here to visit our site");
task.Set(Tsk.HyperlinkAddress, "https://products.aspose.com");
task.Set(Tsk.HyperlinkSubAddress, "/total/net");
Console.WriteLine("Hyperlink: " + task.Get(Tsk.Hyperlink));
Console.WriteLine("Hyperlink Address: " + task.Get(Tsk.HyperlinkAddress));
Console.WriteLine("Hyperlink Sub Address: " + task.Get(Tsk.HyperlinkSubAddress));
See Also
- struct Key<T,K>
- enum TaskKey
- class Tsk
- namespace Aspose.Tasks
- assembly Aspose.Tasks