|   |   | 
| Purpose | .Italic allows you to specify the italic property for 
 | 
| Syntax | Setting          ObjectReference.Italic = Value
 Retrieving:    Variable = ObjectReference.Italic
 
 | 
| Operation | ObjectReference is the Tag Name of the objectValue is the setting for the italic property (TRUE or 1 = italic, FALSE or 0 = not italic)
 Variable is a numeric scratch variable
 
 | 
| Remarks | Valid for all Field and Format objects except lines and check boxes.
 | 
| Example | To set the Italic attribute of a radio with the Tag Name of McButton in the radio group (Tag Name = CreditCardGroup)
 CreditCardGroup.Button(McButton).Italic = TRUE
 
 
 To set the .Italic attribute of a box label with the Tag Name of CustomerNameBox:
 
 CustomerNameBox.Italic = TRUE
 
 
 To retrieve the value of the Italic property from a combo box that with a Tag Name of CustomerNumber:
 
 #CUSTOMERNUMBER = CustomerNumber.Italic
 
 
 To retrieve the value of the .Italic property from a radio group with the Tag Name of McButton in the radio group (Tag Name = CreditCardGroup:
 
 #CREDITCARDGROUPMCBUTTON = CreditCardGroup.(McButton).Italic
 
 |