CanInsert
Based on the current selection, it determines whether it is possible to insert rows or columns if entire rows or columns are selected.
BOOL CanInsert( )
TRUE if entire rows or columns are selected else FALSE.
EX1
//before running please highlight one column or one row void Grid_CanInsert_ex1() { Worksheet wks = Project.ActiveLayer(); if(wks) { Grid gg; gg.Attach(wks); if(gg && gg.CanInsert()) { printf("Rows:%d\tColumns:%d\n", gg.Rows, gg.Cols); gg.Insert(); printf("Rows:%d\tColumns:%d\n", gg.Rows, gg.Cols); } } }
Grid::Insert
origin.h