Gtk.ListStore.IterNthChild C# (CSharp) Method

IterNthChild() public method

public IterNthChild ( Gtk &iter, int n ) : bool
iter Gtk
n int
return bool
        public bool IterNthChild(out Gtk.TreeIter iter, int n)
        {
            bool raw_ret = gtk_tree_model_iter_nth_child (Handle, out iter, IntPtr.Zero, n);
            bool ret = raw_ret;
            return ret;
        }

Usage Example

Esempio n. 1
0
 public object GetValue(int row, int column)
 {
     Gtk.TreeIter it;
     if (!List.IterNthChild(out it, row))
     {
         return(null);
     }
     return(GetValue(it, column));
 }
All Usage Examples Of Gtk.ListStore::IterNthChild