Exemple #1
0
 public void SetCustomTag(CustomPriceBarTag tag, bool isSet)
 {
     if (isSet)
     {
         CustomTags |= tag;
     }
     else
     {
         CustomTags &= ~tag;
     }
 }
Exemple #2
0
 public bool GetCustomFlag(CustomPriceBarTag tag)
 {
     return((CustomTags &= tag) == tag);
 }