AODL.Utils.ContentMocker.RowIndex C# (CSharp) Méthode

RowIndex() private méthode

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