MCPcopy Create free account
hub / github.com/andlabs/ui / RowInserted

Method RowInserted

tablemodel.go:207–209  ·  view source on GitHub ↗

RowInserted tells any Tables associated with m that a new row has been added to m at index index. You call this method when the number of rows in your model has changed; after calling it, NumRows should returm the new row count.

(index int)

Source from the content-addressed store, hash-verified

205// the number of rows in your model has changed; after calling it,
206// NumRows should returm the new row count.
207func (m *TableModel) RowInserted(index int) {
208 C.uiTableModelRowInserted(m.m, C.int(index))
209}
210
211// RowChanged tells any Tables associated with m that the data in
212// the row at index has changed. You do not need to call this in

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected