Syntax: Objekt. FontItalic = True|False [Boolean]
Einstellung:
Die Eigenschaft FontItalic verwendet die folgenden Einstellungen:
Einstellung | Beschreibung | Visual basic |
---|---|---|
Ja | Der Text wird kursiv dargestellt . | True (-1) |
Nein | (Standardeinstellung) Der Text wird nicht kursiv dargestellt . | False (0) |
bzw.:Dim objChkBox As SpecialCheckbox3 Set objChkBox = Me!SpecialCheckbox.Object With objChkBox .FontItalic = True End With Set objChkBox = NothingMe!SpecialCheckbox.FontItalic = True