Purpose

.Button() is a method to return an object reference for the radio group and object.
 

Syntax

RadioGroup_tagname.Button(_tagname)
 

Operation

RadioGroup_tagname is the Tag Name of the object
_tagname
is the Tag Name of the object
 

Remarks

This method provides a way to reference a within a radio group. The object reference returned can be operated on in the same way the Tag Name can be operated on.  In other words, you can set or retrieve properties and execute methods that are supported for the radio object. The Tag Names have to be unique within each radio group. The same Tag Name can be used in more than one radio group.
 

Example

To disable the (so it cannot be selected by the user) with the Tag Name "Visa" in the radio group with the Tag Name "CreditCard".

CreditCard.Button("Visa").Enable = FALSE
 

Comment on this topic

Topic ID: 510014