AODL.Utils.ContentMocker.RowIndex C# (CSharp) Method

RowIndex() private method

private RowIndex ( Table table, Row row ) : int
table AODL.Document.Content.Tables.Table
row AODL.Document.Content.Tables.Row
return int
		public int RowIndex(Table table, Row row)
		{
			IList Rows = table.Rows as IList;
			return Rows.IndexOf(row);
		}