HyperLink Property
Description
Gets/Sets a Boolean value indicating whether the item in the popup control will be a hyperlink. This will cause the text to be underlined on mouse over if the item is text.
Property Type
Read-write property
Syntax (Visual Basic)
Public Property HyperLink() As Boolean
Remarks
The popup control allows you to easily add a hyperlink to your popup window. When you move the mouse cursor over text that is a hyperlink, the text will become underlined indicating that you will be redirected to another window or website when clicked on.
Example
' This sample code illustrates how to add a hyperlink to your popup control.
Dim Item As PopupControlItem
Set Item = PopupControl.AddItem(5, 0, 170, 25, "Codejock Information")
Item.Hyperlink = True
See Also
Copyright (c) 1998-2024 Codejock Technologies. All rights reserved.