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 objSwBtn As SwitchingButton3 Set objSwBtn = Me!SwitchingButton.Object With objSwBtn .FontItalic = True End With Set objSwBtn = NothingMe!SwitchingButton.FontItalic = True