Method: TreeItem#row

Defined in:
lib/Qt/active_item_model.rb

#rowObject



77
78
79
80
81
82
83
# File 'lib/Qt/active_item_model.rb', line 77

def row
    if !@parentItem.nil?
        return @parentItem.childItems.index(self)
    end

    return 0
end