Ejemplo n.º 1
0
 public int GetRowOfItem(ITreeGridItem item)
 {
     if (collection == null)
     {
         return(-1);
     }
     return(collection.IndexOf(item));
 }
Ejemplo n.º 2
0
 public int GetRowOfItem(object item)
 {
     if (collection == null)
     {
         return(-1);
     }
     return(collection.IndexOf(item));
 }
Ejemplo n.º 3
0
 public int GetRowOfItem(object item)
 {
     return(collection == null ? -1 : collection.IndexOf(item));
 }
Ejemplo n.º 4
0
 public int GetRowOfItem(object item)
 {
     return(collection != null?collection.IndexOf(item) : -1);
 }
Ejemplo n.º 5
0
		public int GetRowOfItem(ITreeItem item)
		{
			return collection != null ? collection.IndexOf(item) : -1;
		}