Identity Panel uses the rule engine for date time formatting. DateTime functions may be found in the rule helper, which is opened by pressing the "?" icon.
Date time styling is often used in shutter views or reports. Two of the most commonly used functions are:
FromFileTime(accountExpires)
DateTimeFormat(Now(), "MMM dd, yyyy")
You may use any .NET format string with DateTimeFormat (see .NET Custom Date and Time Format Strings).
It is also possible to use conditional logic to display date times. For example:
If( Or(accountExpires == 0, accountExpires == 9223372036854775807), "Never Expires", DateTimeFormat(FromFileTime(context), "MMM dd, yyyy") )
Comments
0 comments
Please sign in to leave a comment.