Type Key Detail
Error Line 2:.. Error Description
Falut content ....
STATUS Added 55
STATUS Updated 10
I want to control the Details Value Text's HorizontalAlignment property depend on the Type value,such as when Type value is not STATUS Details Text HorizontalAlignment is set to "Left" ,when Type value is "STATUS" ,I need to set the Detail Text HorizontalAlignment property to "Right" ,just satisfy the rule "Number -- Right aligned".
I try to uses
Code: Select all
Text25.HorizontalAlignment = IIF(AuditEventDetails.Type == "STATUS","Right","Left")