Description
Returns/sets the color button hint text.
Usage
[form.][control.]IndicatorToolTip[ = String]
Data Type
String
Default
"Color Picker"
Remarks
This property sets or returns the control color button tooltip text. Tooltip can be sets fore color and background color with TooltipForeColor and TooltipBackColor, it can be displays multi-line texts, and that no tool's line length pixels exceeds roughly TooltipMaxWidth property value, it can be also sets the tooltip window show time with TooltipDelayTime property, tooltip’s left margin can be sets by TooltipMargin property, These property dependences on EnableToolTip property.
Refer to related properties above.
Sample
ColorChooser1.IndicatorToolTip = " You can make pretty pictures too... :-) " & vbCrLf & vbCrLf & _
" !!!!!!!" & vbCrLf & _
" (ô ô)" & vbCrLf & _
" +-----oOO----(_)----------------+" & vbCrLf & _
" | Got a special |" & vbCrLf & _
" | message? |" & vbCrLf & _
" +------------------------oOO-----+" & vbCrLf & _
" |__| |__|" & vbCrLf & _
" || ||" & vbCrLf & _
" ooO Ooo"
ColorChooser1(1).TooltipBackColor = RGB(0, 128, 255)
ColorChooser1(1).TooltipForeColor = RGB(0, 0, 0)
This code result as follows:
