public void RemovePropertyForState(FloatingLabelEntryState state)
 {
     if (this.StatesProperties.ContainsKey(state))
     {
         this.StatesProperties.Remove(state);
     }
 }
 public void RemovePropertyForState(FloatingLabelEntryState state)
 {
     if (this.StatesProperties.ContainsKey(state)) {
         this.StatesProperties.Remove (state);
     }
 }
 public void AddPropertiesForState(FloatingLabelEntryStateProperties property, FloatingLabelEntryState state)
 {
     RemovePropertyForState(state);
     this.StatesProperties.Add(state, property);
 }
 public void AddPropertiesForState(FloatingLabelEntryStateProperties property, FloatingLabelEntryState state)
 {
     RemovePropertyForState (state);
     this.StatesProperties.Add (state, property);
 }