System.Windows.Forms.ComboBoxHelper.KeyUp C# (CSharp) 메소드

KeyUp() 공개 메소드

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