System.Windows.Forms.ToolStripPanel.PointToRow C# (CSharp) Метод

PointToRow() публичный Метод

public PointToRow ( Point clientLocation ) : System.Windows.Forms.ToolStripPanelRow
clientLocation Point
Результат System.Windows.Forms.ToolStripPanelRow
		public ToolStripPanelRow PointToRow (Point clientLocation)
		{
			foreach (ToolStripPanelRow row in this.rows)
				if (row.Bounds.Contains (clientLocation))
					return row;
					
			return null;
		}
		#endregion