pub trait TableExtManual: 'static {
    fn selected_columns(&self) -> Vec<i32>;
    fn selected_rows(&self) -> Vec<i32>;
}

Required Methods

Gets the selected columns of the table by initializing **selected with the selected column numbers. This array should be freed by the caller.

selected

a gint** that is to contain the selected columns numbers

Returns

a gint representing the number of selected columns, or 0 if value does not implement this interface.

Gets the selected rows of the table by initializing **selected with the selected row numbers. This array should be freed by the caller.

selected

a gint** that is to contain the selected row numbers

Returns

a gint representing the number of selected rows, or zero if value does not implement this interface.

Implementors