그리드 특정 열이 자식 컬럼을 가지고 있는지를 반환하는 API이다.
Parameters | Type | Description |
---|---|---|
nColumn | short | 열 인덱스 |
Type | Description |
---|---|
BOOL | 자식 컬럼을 가지고 있는지 여부(true, false) |
function btn_on_mouseup()
{
var is_has_clild_column;
is_has_clild_column = grd.ishaschildcolumn(0);
factory.consoleprint("0 column has clild column = " + is_has_clild_column);
}