Purpose

.Strikeout allows you to specify whether the Strikeout property is set for certain objects.
 

Syntax

Setting:          ObjectReference.StrikeOut = Value

Retrieving:     Variable = ObjectReference.StrikeOut
 

Operation

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

Remarks

The Strikeout property causes the text to be displayed with a line through it.
 

Examples

To display the text of a radio (Tag Name = MCButton) in the radio group (Tag Name = CreditCardGroup) with a line through it:

CreditCardGroup.Button(MCButton).Strikeout = TRUE


To retrieve the .StrikeOut property value from a combo box (Tag Name = CustomerNumber):

#CUSTOMERNUMBER = CustomerNumber.StrikeOut
 

Comment on this topic

Topic ID: 510092