![]() | Type | Description | ||
| LinkKey as Variant | A String expression that indicates the key of the link being accessed. | |||
| Property as LinkPropertyEnum | A LinkPropertyEnum expression that specifies the option being accessed. | |||
| Variant | A Variant value that indicates the newly value for the property. |
The /NET Assembly version defines get/set shortcut properties as follow ( they start with get_ or set_ keywords ):

So instead using the get_Link or set_Link properties you can use these functions.
For instance, the following VB/NET sample changes the link's color:
With Exg2antt1.Items
.set_LinkColor("L1", Color.Red)
End With
For instance, the following C# sample changes the link's color:
exg2antt1.Items.set_LinkColor("L1", Color.Red);

The following VB sample displays a text plus a picture on a link:
G2antt1.Items.Link("Link", exLinkText) = " <img>excel</img><br><br><b>doc.xls"