Purpose

.MouseOverLabel allows you to specify the label to be applied to certain objects when the mouse pointer is positioned over it.
 

Syntax

Setting:        ObjectReference.MouseOverLabel = Value

Retrieving:   Variable = ObjectReference.MouseOverLabel
 

Operation

ObjectReference is the Tag Name of the object
Value
is a character string or variable
is an alphanumeric variable
 

Remarks
 

 

Example

To set the MouseOverLabel on an Icon object (Tag Name = CUSTOMERACTIVEICON):

CUSTOMERACTIVEICON.MouseOverLabel = "Visa_Active"  or

$VISA_MOLABEL = "VISA Active"
CUSTOMERACTIVEICON.MouseOverLabel = $VISA_MOLABEL


To retrieve the current text from the same object:

CUSTOMERACTIVEICON_MOLABEL = CUSTOMERACTIVEICON.MouseOverLabel
 

Comment on this topic

Topic ID: 510071