Purpose

.Bold allows you to specify the bold property for certain objects.
 

Syntax

Setting:          ObjectReference.Bold = Value

Retrieving:     Variable = ObjectReference.Bold
 

Operation

ObjectReference is the Tag Name of the object
Value
is the setting for the bold property (TRUE or 1 = bold, FALSE or 0 = not bold)
Variable
is a numeric variable 
 

Remarks
 

 

Example

To set the .Bold property of a radio using a (tagname = MCButton) within the radio group with the Tag Name of CreditCardGroup:

CreditCardGroup.Button(MCButton).Bold = TRUE


To set the .Bold property of a box label using Tag Name of CustomerNameBox:

#TRUE = 1
CustomerNameBox.Bold = #TRUE


To retrieve the value of the .Bold property from a combo box with Tag Name of CustomerNumber:

#CUSTOMERNUMBER_BOLD = CustomerNumber.Bold


To retrieve the value of the .Bold property from a radio group with the Tag Name of MCButton in the radio group with the Tag Name of CreditCardGroup:

#CREDITCARDGROUPMCBUTTON_BLD = CreditCardGroup.Button(MCButton).Bold
 

Comment on this topic

Topic ID: 510039