System.Windows.Forms.NSViewExtender.BringToFront C# (CSharp) Method

BringToFront() public static method

public static BringToFront ( this theView ) : void
theView this
return void
		public static void BringToFront(this NSView theView)
		{
			if(theView.Superview == null)
				return;
			theView.Superview.BringSubviewToFront(theView);
		}
	}