Login Page - Create Account

Support Board


Date/Time: Sat, 23 Nov 2024 02:17:58 +0000



Post From: sc.ValueFormat must be set outside of sc.SetDefaults

[2024-09-24 17:39:38]
Mark Lewis - Posts: 25
This doesn't work


  if (sc.SetDefaults)
  {
    ...
    sc.ValueFormat = 0;
    ...
  }


This does work


  if (sc.SetDefaults)
  {
    ...
  }
  
  sc.ValueFormat = 0;


If this is the correct behavior, it might be worth noting it in documentation for sc.ValueFormat