Mono.UIAutomation.Winforms.DataGridProvider.GetChildProviderAt C# (CSharp) Метод

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

public GetChildProviderAt ( int row, int column ) : System.Windows.Automation.Provider.IRawElementProviderSimple
row int
column int
Результат System.Windows.Automation.Provider.IRawElementProviderSimple
		public IRawElementProviderSimple GetChildProviderAt (int row, int column)
		{
			int rowCount = CurrencyManager == null ? 0 : CurrencyManager.Count;
			int columnCount = CurrentTableStyle == null ? 0 : CurrentTableStyle.GridColumnStyles.Count;

			//According to http://msdn.microsoft.com/en-us/library/ms743401.aspx
			if (row < 0 || column < 0 || row >= rowCount || column >= columnCount)
			    throw new ArgumentOutOfRangeException ();

			return items [row].GetChildProviderAt (column);
		}