public Method

Grid.insert_rows(pos = 0, num = 1, update_labels = true)

There's no documentation for this item.

Source Code

# File wx/classes/grid.rb, line 88
def insert_rows(pos = 0, num = 1, update_labels = true)
  __insert_rows(pos, num, update_labels)
  num.times { @__row_editors.insert(pos, nil) }
  num.times { @__row_renderers.insert(pos, nil) }
  num.times { @__cell_editors.insert(pos, []) }
  num.times { @__cell_renderers.insert(pos, []) }
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.