【お知らせ】この部分は英語原文のみでの提供となります。何卒ご了承ください。
2.2.4.22.2 Grid::CanDelete
Contents
Description
Based on the current selection, it determines whether it is possible to delete if entire rows or columns are selected.
Syntax
BOOL CanDelete( )
Parameters
Return
TRUE if entire rows or columns are selected else FALSE.
Examples
EX1
//before running please highlight one column or one row void Grid_CanDelete_ex1() { Worksheet wks = Project.ActiveLayer(); if(wks) { Grid gg; gg.Attach(wks); if(gg && gg.CanDelete()) { gg.Delete(); } } }
Remark
See Also
Header to Include
origin.h