System.Windows.Forms.ComboBoxHelper.KeyUp C# (CSharp) Méthode

KeyUp() public méthode

public KeyUp ( NSEvent theEvent ) : void
theEvent NSEvent
Résultat void
		public override void KeyUp (NSEvent theEvent)
		{
			if(maxLength > -1 &&  this.StringValue.Length > maxLength)
				this.StringValue = this.StringValue.Substring(0,maxLength);
			base.KeyUp (theEvent);
		}