codice:
#region . Properties .

		[Category("Appearance")]
		[Browsable(true)]
		public virtual int BorderWidth
		{
			get {return _borderWidth;}
			set 
			{
				if ( value >= 2 && value < 100) 
				{
					_borderWidth = value;
					this.Refresh(); 
				}
			}
		}
Qualcuno sa dirmi cosa vuol dire questa porzione di codice?
In partcolare cosa sta a significare:
codice:
[Category("Appearance")]
		[Browsable(true)]