|
|
|
|
LinkColorRTF (Function) In french: LienCouleurRTF Changes the color of links in all RTF Edit controls in the application. By default, links in RTF Edit controls are blue, or use the color specified with LinkColor.
// Customize color of links (Edit and Static controls) LinkColor(RGB(250,80,84), RGB(255,90,89), RGB(250,70,84)) // Customize color of links in RTF Edit controls LinkColorRTF(RGB(25,80,84), RGB(25,90,89), RGB(25,70,84))
Syntax
LinkColorRTF(<Default Color> [, <Rollover Color> [, <Clicked link color> [, <Color of Visited Link>]]])
<Default Color>: Integer or Integer constant Default color of link. This color can correspond to:If this parameter corresponds to the DefaultColor constant, the colors of initial style are restored. <Rollover Color>: Optional integer or Integer constant Color of link during rollover. This color can correspond to:If this parameter is not specified, the hover color is the <Default color>. <Clicked link color>: Optional integer or Integer constant Color of link during the click. This color can correspond to:If this parameter is not specified, the color of the clicked link is the <Default color>. <Color of Visited Link>: Optional integer or Integer constant Color of link already visited. This color can correspond to:If this parameter is not specified, the color of the visited link is the <Default color>.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|