"linkUnderline" - obsolete

The attribute "linkUnderline"; underlines a link. (Obsolete since Version 3.10)

Synopsis

shape.linkUnderline(bool mode);

Parameter

Parameter Description
shape Name of the object
scMode

TRUE = Underline a link

FALSE = Do not underline

Description

The attribute "linkUnderline"; underlines a link.

Example

In the following example a link is specified. The second code sample underlines the link.

main(bool enter)
{
  TEXT_EDIT1.text = "<qt>This is a link <a href=\"www.etm.at\">klick here</a></qt>";
}

Add this code to EventChange of a radio box (with two options linkUnderLine off and linkUnderline on).

main(int button)
{
  TEXT_EDIT1.linkUnderline = (button == 1);
}

Assignment

TextEdit