Example #1
0
 public bool GetCustomPropertyFlag(CustomPropertyFlags flag)
 {
     if (CustomPropertyFlags.ContainsKey(flag))
     {
         return(CustomPropertyFlags[flag]);
     }
     else
     {
         return(false);
     }
 }
Example #2
0
 public Property SetCustomPropertyFlags(CustomPropertyFlags flag, bool value)
 {
     CustomPropertyFlags[flag] = value;
     return(this);
 }