UDTypography and italics

Product: PowerShell Universal
Version: 4.0.2

Is it possible to get UDTypography to be italics? I have tried

-Style @{ fontstyle = ‘italic’ }

but that hasn’t worked for me.

It looks like the style props are case sensitive. Try this.

    New-UDTypography -Text 'Test' -Style @{
        fontStyle = 'italic'
    } 

Thanks, that did it.